@extends('layouts.app')
@section('title', 'Berita & Acara – SD Negeri Swasta')
@section('content')
{{-- Page Hero --}}
Beranda
/
Informasi
/
Berita & Acara
Berita & Acara
Informasi terbaru, kegiatan sekolah, dan berbagai pembaruan
{{-- Content --}}
{{-- FILTER + SEARCH --}}
{{-- Grid --}}
{{-- Catatan: 'gambar' & 'video' bersifat opsional dan tidak terikat ke 'type'.
Berita tidak wajib punya foto, acara pun tidak wajib punya video —
kalau admin isi salah satunya saja, halaman tetap tampil rapi (pakai placeholder). --}}
@forelse($posts as $post)
@if(!empty($post->gambar))
 ? $post->gambar : asset($post->gambar) }})
@else
@endif
{{ ucfirst($post->type) }}
@if(!empty($post->video))
@endif
{{ $post->tanggal->translatedFormat('d F Y') }}
{{ $post->judul }}
{{ $post->deskripsi }}
Selengkapnya
@empty
Belum ada berita atau acara.
@endforelse
@push('scripts')
@endpush
@endsection