@extends('layouts.front') @section('title', '🎬 الفيديوهات') @section('content')

🎥 أحدث الفيديوهات

@if($videos->count())
@foreach($videos as $video)
@if($video->thumbnail) @else @endif
@endforeach
{{ $videos->links() }}
@else
لا توجد فيديوهات حاليًا.
@endif
@endsection