@extends('layouts.admin') @section('title', 'القائمة الذهبية') @section('content')
@include('components.admin-sidebar')

استعراض الفيديوهات

ابحث عن الفيديوهات وأضفها للقائمة الذهبية مباشرة

العودة للقائمة الذهبية
@if($search) @endif
@forelse($videos as $video)
{{ $video->title }} @if($video->isInGoldenList()) ذهبي @endif {{ number_format($video->video_views) }}
{{ Str::limit($video->title, 50) }}

{{ $video->user ? $video->user->name : 'غير معروف' }}

{{ $video->createdAt ? $video->createdAt->format('Y-m-d') : '-' }}

@empty

لا توجد فيديوهات

@endforelse
@if($videos->hasPages())
{{ $videos->links('vendor.pagination.bootstrap-5') }}
@endif
@push('scripts') @endpush @endsection