{{ $data }}
@if ($show == 'true')
MENU
@endif
@php parse_str($data, $output); @endphp
@foreach ($output['entities'] as $entityId)
@php
$getTitle = DB::connection('mysql_site_' . session('serverID'))
->table('pages')
->where('id', '=', $entityId)
->where('site_id', '=', session('siteID'))
->get()
->first();
@endphp
@if ($getTitle)
-
{{ $getTitle->title }}
@endif
@endforeach