@if($page->count())
{{ $szType }}
| S.No |
{{ __('messages.name') }} |
{{ __('messages.date') }} |
{{ __('messages.download') }}
@if($iType == 5)
(PDF)
@endif
|
@if($iType == 6)
{{ __('messages.download') }} (DOC) |
@endif
@forelse($page as $item)
|
{{ ($page->currentPage()-1) * $page->perPage() + $loop->iteration }}
|
{{ $item->szTitle }} |
{{ \Carbon\Carbon::parse($item->dtDate)->format('d/m/Y') }}
|
{{ __('messages.download') }}
|
@if($iType == 6)
@if($item->szWordDocument)
{{ __('messages.download') }}
@else
{{ __('messages.not_available') }}
@endif
|
@endif
@empty
|
{{ __('messages.no_record_found') }}
|
@endforelse
{{ $page->links(data: ['scrollTo' => '#office-corner-table']) }}
@else
{{ __('messages.no_record_found') }}
@endif