@extends('layouts.app') @section('title', 'Pengumuman') @section('content') Buat Pengumuman
No Judul Tanggal Dibuat Oleh Aksi @forelse ($pengumuman as $item) {{ $loop->iteration + ($pengumuman->currentPage() - 1) * $pengumuman->perPage() }}
{{ $item->judul }}
{{ Str::limit($item->isi, 50) }}
{{ $item->tanggal->format('d M Y') }} {{ $item->pembuat->nama_lengkap ?? 'System' }}
@empty @endforelse
@endsection