@php $logo = setting('site_logo', ''); $brand = setting('site_brand', ''); $title = isset($title) ? $title : setting('site_homepage_title', ''); @endphp @push('header') @endpush @if ($logo) {!! $logo !!} @else {!! $brand !!} @endif @foreach ($menu as $item) @if (count($item['children'])) {{ $item['name'] }} @foreach ($item['children'] as $children) {{ $children['name'] }} @endforeach @else {{ $item['name'] }} @endif @endforeach