@php
$pdfHistory = \App\Models\Glosarium::whereNotNull('judul_perda')
->select('judul_perda', 'link_perda', 'created_at')
->distinct('judul_perda')
->orderBy('created_at', 'desc')
->limit(5)
->get();
@endphp
@if($pdfHistory->count() > 0)
@foreach($pdfHistory as $pdf)
{{ Str::limit($pdf->judul_perda, 35) }}
{{ $pdf->created_at->format('d M Y, H:i') }}
@if($pdf->link_perda)
@endif
@endforeach
@if(\App\Models\Glosarium::whereNotNull('judul_perda')->distinct('judul_perda')->count() > 5)
+ {{ \App\Models\Glosarium::whereNotNull('judul_perda')->distinct('judul_perda')->count() - 5 }} PDF lainnya
@endif
@else
Belum ada PDF yang diproses
Upload PDF pertama Anda!
@endif