@component('backoffice._layouts.app', [ 'title' => 'Offices' ]) @component('backoffice._components.pageHeading', ['breadcrumb' => null]) Offices @slot('actions') Add entry @endslot @endcomponent @component('backoffice._components.pageContent')
@foreach($models as $office) @endforeach
Name Location Updated
{{ html()->publishedIndicator($office->published_at) }} {{ ($office->first_translated_name) ?: '(untitled)' }} {{ $office->location }} {{ diff_date_for_humans($office->updated_at) }} {{ html()->viewButton($office->path()) }} {{ html()->editButton(route('backoffice.offices.edit', $office->id)) }} {{ html()->deleteButton(action('Backoffice\OfficesController@destroy', $office->id)) }}
@endcomponent @endcomponent