@extends('admin.layouts.app') @section('title', 'Detail Pengumuman') @section('content')

Detail Pengumuman

{{ $pengumuman->judul }}

{{ $pengumuman->author }} {{ $pengumuman->published_at ? $pengumuman->published_at->format('d/m/Y H:i') : 'Belum dipublikasi' }} {{ $pengumuman->is_active ? 'Aktif' : 'Nonaktif' }}
@if($pengumuman->gambar)
Gambar Pengumuman
Gambar Pengumuman
@endif
Isi Pengumuman
{!! nl2br(e($pengumuman->isi)) !!}
Informasi Tambahan
  • ID: {{ $pengumuman->id }}
  • Dibuat: {{ $pengumuman->created_at->format('d/m/Y H:i') }}
  • Diupdate: {{ $pengumuman->updated_at->format('d/m/Y H:i') }}
Aksi
Edit Pengumuman
@csrf @method('DELETE')
@endsection