@component('backoffice._layouts.app', [ 'title' => 'Navigations' ]) @component('backoffice._components.pageHeading', ['breadcrumb' => null]) Navigations @slot('actions') Add entry @endslot @endcomponent @component('backoffice._components.pageContent')
@foreach($models as $name => $group) @foreach($group as $navigation) @endforeach
{{ $name }}
Name Parent Updated
{{ html()->publishedIndicator($navigation->published_at) }} {{$navigation->name}} @if($navigation->hasParent())
{{ $navigation->parent()->first()->name }}
@endif
{{ diff_date_for_humans($navigation->updated_at) }} {{ html()->editButton(route('backoffice.navigations.edit', $navigation->id)) }} {{ html()->deleteButton(action('Backoffice\NavigationsController@destroy', $navigation->id)) }}
@endforeach
@endcomponent @endcomponent