{{-- resources/views/santri/berita/show.blade.php --}} @extends('layouts.app') @section('title', $berita->judul) @section('content')
{{-- ===== GAMBAR HEADER ===== --}} @if($berita->gambar)
{{ $berita->judul }} {{-- Overlay gradient bawah --}}
@else {{-- Banner tanpa gambar --}}
@endif {{-- ===== BODY KONTEN ===== --}}
{{-- Navigasi atas --}}
Berita Detail
Kembali
{{-- ID & Badge --}}
{{ $berita->id_berita }} Published
{{-- Judul --}}

{{ $berita->judul }}

{{-- Meta info --}}
{{ $berita->penulis }} {{ $berita->created_at->isoFormat('dddd, D MMMM YYYY') }} {{ $berita->created_at->format('H:i') }} WIB
{{-- ===== KONTEN BERITA ===== --}}
{!! $berita->konten !!}
{{-- Footer --}}

Terakhir diperbarui: {{ $berita->updated_at->isoFormat('D MMMM YYYY, HH:mm') }} WIB

Berita Lainnya Dashboard
{{-- Styling konten rich text dari Quill --}} @endsection