@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 *
Supporthub
|
Viewpage
|
Modify
|
@if(count($droplist_support) > 0)
@foreach ($droplist_support as $items)
{{$items->pagename}}
|
View
|
|
@endforeach
@else
No data available in table
|
@endif
Sharedhub
|
Viewpage
|
Modify
|
@if(count($droplist_shared) > 0)
@foreach ($droplist_shared as $items)
{{$items->pagename}}
|
View
|
|
@endforeach
@else
No data available in table
|
@endif
Privatehub
|
Viewpage
|
Modify
|
@if(count($droplist_private) > 0)
@foreach ($droplist_private as $items)
|
View
|
|
@endforeach
@else
No data available in table
|
@endif
@endsection