@component('backoffice._layouts.app', [ 'title' => 'Videos' ]) @component('backoffice._components.pageHeading', ['breadcrumb' => null]) Videos @slot('actions') Add entry @endslot @endcomponent @component('backoffice._components.pageContent')
Name | Type | Author | Date | Updated | |
---|---|---|---|---|---|
{{ html()->publishedIndicator($video->published_at, $video->promoted_at) }} {{ ($video->first_translated_name) ?: '(untitled)' }} | @if($videoType = $video->tags()->withType('videoType')->first()) {{ $videoType->name }} @endif | @if($video->author) {{ $video->author->name }} @endif | {{ $video->started_at->format('d/m/Y') }} | {{ diff_date_for_humans($video->updated_at) }} | {{ html()->viewButton($video->path()) }} {{ html()->editButton(route('backoffice.videos.edit', $video->id)) }} {{ html()->deleteButton(action('Backoffice\VideosController@destroy', $video->id)) }} |