{{-- resources/views/pengumuman/index.blade.php --}} @extends('templates.dashboard') @section('isi')

Daftar Pengumuman

@if ($announcements->isEmpty()) @else @foreach ($announcements as $item) @endforeach @endif
No. Judul Pengumuman Status Created By Tanggal Dibuat Aksi
Tidak ada pengumuman ditemukan.
{{ $loop->iteration }} {{ $item->title }} {{ $item->is_published == 1 ? 'Dipublikasikan' : 'Draft' }} {{ $item->creator->name }} {{ $item->created_at->format('d M Y') }}
  • @method('delete') @csrf
  • @if ($item->is_published == 0)
  • @csrf @method('PATCH')
  • @else
  • @endif
{{ $announcements->links() }}
@endsection