@yield('head')
Toggle Navigation
@if (Auth::guest())
Iniciar Sesión
@else @foreach ($sections as $section) @if(count($section['items']) > 0)
{{$section['title']}}
@foreach ($section['items'] as $item)
{{$item['title']}}
@endforeach
@else
{{$section['title']}}
@endif @endforeach
{{ Auth::user()->name }}
Salir
{{ csrf_field() }}
@endif
@yield('content')