@extends('layouts.app') @section('content')

Daftar Pengumuman

@foreach($pengumuman as $item)
@if($item->gambar) {{ $item->judul }} @endif

{{ $item->judul }}

{{ Str::limit($item->isi, 100) }}

{{ $item->published_at ? $item->published_at->format('d/m/Y') : $item->created_at->format('d/m/Y') }}
Baca Selengkapnya →
@endforeach
{{ $pengumuman->links() }}
@endsection