| # |
ID Code |
Letter No |
Title |
Sender |
Destination |
Created At |
Actions |
@foreach ($sendRecieved as $doc)
| {{ $loop->iteration + ($sendRecieved->currentPage() - 1) * $sendRecieved->perPage() }}
|
{{$doc->id}} |
{{ $doc->letter_number ?? '-' }} |
{{ $doc->document_title ?? '-' }} |
{{ $doc->from_desk->name ?? ($doc->destination->name_ps ?? 'N/A') }} |
{{ $doc->to_desk->name ?? 'Unknown' }} |
{{ $doc->created_at->format('Y-m-d') }} |
View
|
@endforeach
{{-- Laravel Pagination --}}
{{ $sendRecieved->withQueryString()->links('pagination::bootstrap-4') }}