@extends('admin.layout') @section('title', 'قائمة الفيديوهات — نظام مقالاتي') @push('css') @endpush @section('content')

قائمة الفيديوهات

إضافة فيديو
@if(session('success'))
{{ session('success') }}
@endif
@forelse($videos as $video) @empty @endforelse
# الصورة المصغرة العنوان الرابط الحالة الإجراءات
{{ $video->id }} @if($video->thumbnail) @else @endif {{ $video->title }} فتح {{ $video->active ? 'نشط' : 'معطل' }} تعديل
@csrf @method('DELETE')
لا توجد فيديوهات حالياً.
{{ $videos->links() }}
@endsection