@extends($layout) @section('content')

Districts

@foreach ($districts as $district) @php $recentVideo = $mostRecentVideos[$district->id] ?? null; $thumbnailUrl = $recentVideo->thumbnail_url ?? asset('assets/img/video-thumbnail-placeholder.png'); @endphp
{{ $district->name }}
{{ $district->name }}
{{ $recentVideo->title ?? 'No Videos Yet' }}

{{ $recentVideo->description ?? '' }}

Uploaded on: {{ $recentVideo && $recentVideo->created_at ? $recentVideo->created_at->setTimezone('Asia/Kolkata')->format('j F Y') : 'N/A' }}

@endforeach

Recent Videos

@foreach ($recentVideosFromAll as $recentVideo) @endforeach
@endsection