@extends('layouts.admin') @section('content')
| {{ trans('cruds.video.fields.id') }} | {{ $video->id }} |
|---|---|
| {{ trans('cruds.video.fields.name') }} | {{ $video->name }} |
| {{ trans('cruds.video.fields.video_url') }} | {{ $video->video_url }} |
| {{ trans('cruds.video.fields.location') }} | {{ $video->location }} |
| {{ trans('cruds.video.fields.duration') }} | {{ $video->duration }} |
| {{ trans('cruds.video.fields.pole') }} | {{ $video->pole->name ?? '' }} |
| {{ trans('cruds.video.fields.status') }} | {{ App\Models\Video::STATUS_SELECT[$video->status] ?? '' }} |