{{ CCMS::createMenuLink('All Menu Locations', route('menulocations.index')) }}
@foreach (DB::select('select * from tbl_menulocations where status=1 order by display_order') as $menulocation)
{{ CCMS::createMenuLink($menulocation->title, route('menuitems.index', ['menulocation' => $menulocation->menulocation_id])) }}
@endforeach
{{ CCMS::createMenuLink('All Menu Items', route('menuitems.index')) }}