@extends('includes.layout') @section('content') @php $droplist_support = DB::table('comm_dropdown')->where('main_link','Supporthub')->where('show_hide',0)->where('userid',Auth::id())->get(); $droplist_shared = DB::table('comm_dropdown')->where('main_link','Sharedhub')->where('show_hide',0)->where('userid',Auth::id())->get(); $droplist_private = DB::table('comm_dropdown')->where('main_link','Privatehub')->where('show_hide',0)->where('userid',Auth::id())->get(); @endphp
Dropdown Navigation  *
@if(count($droplist_support) > 0) @foreach ($droplist_support as $items) @endforeach @else @endif
Supporthub Viewpage Modify
{{$items->pagename}} View
No data available in table
@if(count($droplist_shared) > 0) @foreach ($droplist_shared as $items) @endforeach @else @endif
Sharedhub Viewpage Modify
{{$items->pagename}} View
No data available in table
@if(count($droplist_private) > 0) @foreach ($droplist_private as $items) @endforeach @else @endif
Privatehub Viewpage Modify
View
No data available in table
@endsection