@extends('layouts.app') @section('title', 'Pengumuman') @section('content') Buat Pengumuman
@csrf
No Judul Tanggal Dibuat Oleh Aksi @forelse ($pengumuman as $item) {{ $loop->iteration + ($pengumuman->currentPage() - 1) * $pengumuman->perPage() }}
{{ $item->judul }}
{{ Str::limit($item->isi, 50) }}
@if($item->foto || $item->lampiran)
@if($item->foto) Foto @endif @if($item->lampiran) Lampiran @endif
@endif {{ $item->tanggal ? $item->tanggal->translatedFormat('d M Y') : '-' }} {{ $item->pembuat->nama_lengkap ?? 'System' }}
@empty @endforelse
{{-- Form terpisah untuk hapus per baris guna menghindari nested form --}} @foreach ($pengumuman as $item) @endforeach @endsection @section('script') @endsection