{{ $claim->case_number ?: 'HA Claim #' . $claim->id }}
{{-- LEFT: Claim summary + status + tranche --}}
{{ $claim->case_number ?: '—' }}
@if($claim->status) {{ $claim->status->display_name }} @endif
@can('claims.edit') @endcan
Type: @if($claim->redress_type === 'FIXED') Fixed @elseif($claim->redress_type === 'INDIVIDUAL') Individual @else — @endif
Created: {{ $claim->created_at?->format('d/m/Y') ?? '—' }}

@if($client) @endif
{{-- Status editor --}} {{-- Funding Tranche --}} @if($client)
Funding Tranche
@if($client->tranche()->exists())

{{ $client->tranche->funder_name }} — {{ $client->tranche->tranche_name }}

@else

No funding tranche assigned.

@endif
@endif {{-- Institution Manager --}} {{-- Quick Texter --}}
{{-- CENTER + RIGHT: Tabs --}}
@include('components.skeleton.tab-content')
@if($activeTab === 'overview')
Case Details
APP Number
{{ $claim->case_number ?: '—' }}
Redress Type
@if($claim->redress_type === 'FIXED') Fixed @elseif($claim->redress_type === 'INDIVIDUAL') Individual @else — @endif
Claim ID
{{ $claim->claim_id ?: '—' }}
Care Settings
@forelse($claim->careSettings as $setting)
{{ $setting->institution->display_name }} @if($setting->dates)
{{ $setting->dates }}
@endif
@empty

No care settings recorded.

@endforelse
@elseif($activeTab === 'application') @elseif($activeTab === 'statements') @elseif($activeTab === 'dsars') @elseif($activeTab === 'key-dates') @elseif($activeTab === 'contracts') @elseif($activeTab === 'documents') @elseif($activeTab === 'notes') @elseif($activeTab === 'tasks') @elseif($activeTab === 'history') @elseif($activeTab === 'senders')
@endif