{{-- Filters --}}
{{-- Table --}}
| Case Number |
Client |
Type |
Status |
Created |
|
@forelse($claims as $claim)
|
{{ $claim->case_number ?: '—' }}
|
@if($claim->client)
{{ $claim->client->name_first }} {{ $claim->client->name_last }}
@else
—
@endif
|
@if($claim->redress_type === 'FIXED')
Fixed
@elseif($claim->redress_type === 'INDIVIDUAL')
Individual
@else
—
@endif
|
@if($claim->status)
{{ $claim->status->display_name }}
@else
—
@endif
|
{{ $claim->created_at?->format('d/m/Y') }} |
|
@empty
| No HA claims found. |
@endforelse
{{-- Pagination --}}
{{ $claims->links() }}