@extends('layouts.website') @section('title', 'Daftar Pengumuman') @section('content') {{-- CSS KHUSUS HALAMAN PENGUMUMAN --}}
{{-- 1. HEADER --}}

Pengumuman & Informasi

Dapatkan informasi akademik dan kegiatan sekolah terbaru di sini.

{{-- 2. GRID PENGUMUMAN --}} @if(isset($pengumuman) && $pengumuman->count() > 0)
@foreach($pengumuman as $index => $item) {{-- Gunakan $index untuk delay animasi bertingkat --}}
{{-- Gambar & Badge Tanggal --}}
{{-- Badge Tanggal --}}
{{ \Carbon\Carbon::parse($item->created_at)->format('d') }} {{ \Carbon\Carbon::parse($item->created_at)->format('M') }}
@if($item->gambar && file_exists(public_path('storage/'.$item->gambar))) {{ $item->judul }} @else {{-- Placeholder Keren jika tidak ada gambar --}}
@endif
{{-- Konten Text --}}
{{ Str::limit($item->judul, 60) }}
{{ Str::limit(strip_tags($item->isi), 100) }}
@endforeach
{{-- 3. PAGINATION MODERN --}}
{{ $pengumuman->links() }}
@else {{-- 4. EMPTY STATE (Jika Kosong) --}}

Tidak Ada Pengumuman

Maaf, belum ada data pengumuman saat ini.

@endif
@endsection