@extends('layouts.website')
@section('title', 'Galeri Video')
@section('content')
{{-- CSS KHUSUS HALAMAN VIDEO MODERN --}}
{{-- 1. HERO SECTION --}}
Video Kegiatan
Galeri Video Sekolah
Saksikan keseruan kegiatan, acara, dan profil sekolah melalui koleksi video dokumentasi kami di saluran YouTube resmi.
{{-- 2. MASONRY VIDEO GRID --}}
@if ($allVideos->isEmpty())
Galeri Video Kosong
Belum ada video yang ditambahkan ke galeri saat ini.
@else
@foreach ($allVideos as $index => $video)
@php
$date = isset($video->created_at) ? \Carbon\Carbon::parse($video->created_at)->format('d M Y') : '-';
@endphp
{{-- Video Embed --}}
{{-- Info Body --}}
{{ $video->title }}
Diposting: {{ $date }}
Tonton di YouTube
@endforeach
@endif
{{-- 3. PAGINASI --}}
@endsection