@extends('panel::layouts.master', ['title' => 'قائمة الفيديوهات']) @section('content')
  • قائمة الفيديوهات
  • قائمة الفيديوهات

    @foreach(request()->except(['query', 'page']) as $key => $value) @endforeach
    @can('store', $videoClassName)
    @endcan @can('all', $videoClassName)
    @endcan
    @foreach($videos as $video) @can('show', $video) @endcan @endforeach
    # الصورة المصغرة اسم الملف المدة الحجم الصيغة المستخدم الذي رفعه تاريخ الإنشاء العمليات
    {{ $video->id }} {{ $video->name }} {{ $video->name }} {{ $video->duration }} {{ $video->video_size }} {{ $video->video_type }} {{ $video->user_full_name }} {{ jalalian()->forge($video->created_at)->format(config('common.datetime_format')) }}
    @can('update', $video) @endcan @can('destroy', $video) @endcan @can('update', $video)
    @csrf @method('delete')
    @endcan
    {{ $videos->links() }}
    @endsection