@extends('layouts.app') @section('titlepage', 'Pengumuman') @section('content') @section('navigasi')
Pengumuman
Manajemen data pengumuman internal.
@endsection
@can('pengumuman.create') Tambah Pengumuman @endcan
Data Pengumuman
@foreach ($pengumuman as $d) @endforeach @if($pengumuman->isEmpty()) @endif
NO. JUDUL ISI PENGUMUMAN TANGGAL #
{{ $loop->iteration + $pengumuman->firstItem() - 1 }} {{ $d->judul }} {{ Str::limit(strip_tags($d->isi), 80) }} {{ date('d-m-Y H:i', strtotime($d->created_at)) }}
@can('pengumuman.delete')
@csrf @method('DELETE')
@endcan
Data tidak ditemukan.
{{ $pengumuman->links('pagination::bootstrap-5') }}
@endsection @push('myscript') @endpush