{{ $willsCase->case_number ?? $willsCase->displayId }}
{{-- LEFT: CASE CARD --}}
@if($willsCase->is_open) Open @else Closed @endif @if($willsCase->ifa_referred) IFA Referred @endif
{{ $willsCase->case_number ?? $willsCase->displayId }}

@if($willsCase->rep)
REP: {{ $willsCase->rep }}
@endif @if($willsCase->case_owner)
Case Owner: {{ $willsCase->case_owner }}
@endif @if($willsCase->opened_at)
Opened: {{ $willsCase->opened_at->format('d/m/Y') }}
@endif @if($willsCase->closed_at)
Closed: {{ $willsCase->closed_at->format('d/m/Y') }}
@endif @if($willsCase->occupation)
Occupation: {{ $willsCase->occupation }}
@endif @if($willsCase->national_insurance)
NI: {{ $willsCase->national_insurance }}
@endif
@if($willsCase->client->phone_number) {{ $willsCase->client->phone_number }} @else — @endif
@if($willsCase->client->landline) {{ $willsCase->client->landline }} @else — @endif
@if($willsCase->client->email_address) {{ $willsCase->client->email_address }} @else — @endif
@if($willsCase->client->currentAddress()->exists()) {!! $willsCase->client->currentAddress->asHtml() !!} @else — @endif
{{-- STATUS --}} {{-- QUICK ACTIONS --}}
Actions
@can('edit', $willsCase) Edit Case @endcan View Client
{{-- Quick Texter --}}
{{-- CENTER: TABS --}}
{{-- TAB NAV --}}
@include('components.skeleton.tab-content')
{{-- OVERVIEW --}} @if($activeTab === 'overview')
Case Number{{ $willsCase->case_number ?? '—' }}
REP{{ $willsCase->rep ?? '—' }}
Case Owner{{ $willsCase->case_owner ?? '—' }}
Drafting Contact{{ $willsCase->drafting_contact ?? '—' }}
Products @if($willsCase->products) {{ implode(', ', $willsCase->products) }} @else — @endif
Our Fee{{ $willsCase->our_fee ?? '—' }}
Our Fee Status{{ $willsCase->our_fee_status ?? '—' }}
AW&T Invoice Issued{{ $willsCase->awt_invoice_issued_at?->format('d/m/Y') ?? '—' }}
External Draft Fee{{ $willsCase->external_draft_fee ?? '—' }}
Fee Structure{{ $willsCase->fee_structure ?? '—' }}
Occupation{{ $willsCase->occupation ?? '—' }}
National Insurance{{ $willsCase->national_insurance ?? '—' }}
IFA Referred @if($willsCase->ifa_referred) Yes @else No @endif
{{-- KEY DETAILS --}} @elseif($activeTab === 'key-details')
Date of Birth @if($willsCase->client->date_of_birth) {{ $willsCase->client->date_of_birth->format('d/m/Y') }} ({{ $willsCase->client->date_of_birth->age }}) @else — @endif
NI Number{{ $willsCase->national_insurance ?? '—' }}
Case Number{{ $willsCase->case_number ?? '—' }}
Occupation{{ $willsCase->occupation ?? '—' }}
Fee Structure{{ $willsCase->fee_structure ?? '—' }}
IFA Referred @if($willsCase->ifa_referred) Yes @else No @endif
{{-- DATES --}} @elseif($activeTab === 'dates')
Date/Time Opened{{ $willsCase->opened_at ? $willsCase->opened_at->format('d/m/Y H:i') : '—' }}
Date/Time Closed{{ $willsCase->closed_at ? $willsCase->closed_at->format('d/m/Y H:i') : '—' }}
IFA Referred Date{{ $willsCase->ifa_referred_date ? $willsCase->ifa_referred_date->format('d/m/Y') : '—' }}
AW&T Invoice Issued{{ $willsCase->awt_invoice_issued_at?->format('d/m/Y') ?? '—' }}
Welcome Letter Sent{{ $willsCase->welcome_letter_sent_at?->format('d/m/Y') ?? '—' }}
Introduction Call{{ $willsCase->introduction_call_at?->format('d/m/Y') ?? '—' }}
Trust Docs Instructed{{ $willsCase->trust_docs_instructed_at?->format('d/m/Y') ?? '—' }}
In House Instructed{{ $willsCase->in_house_instructed_at?->format('d/m/Y') ?? '—' }}
Drafts Received{{ $willsCase->drafts_received_at?->format('d/m/Y') ?? '—' }}
Drafts Issued to Client{{ $willsCase->drafts_issued_to_client_at?->format('d/m/Y') ?? '—' }}
Master Copies Signed{{ $willsCase->master_copies_signed_at?->format('d/m/Y') ?? '—' }}
Master Copies Received{{ $willsCase->master_copies_received_at?->format('d/m/Y') ?? '—' }}
Date on Document Signed{{ $willsCase->date_on_document_signed?->format('d/m/Y') ?? '—' }}
Client Letters from HMRC{{ $willsCase->client_letters_from_hmrc_at?->format('d/m/Y') ?? '—' }}
Annual Minutes Task Set{{ $willsCase->annual_minutes_task_set_at?->format('d/m/Y') ?? '—' }}
{{-- WORKFLOW --}} @elseif($activeTab === 'workflow')
Intro Call By {{ $willsCase->intro_call_by ?? '—' }}
Docs Outstanding from Reps {{ $willsCase->docs_outstanding_from_reps ?? '—' }}
{{-- REGISTRATION --}} @elseif($activeTab === 'registration')
Documents Requiring Registration @if(is_null($willsCase->documents_requiring_registration)) — @elseif($willsCase->documents_requiring_registration) Yes @else No @endif
Registered by Aiker
@if($willsCase->documents_to_register_aiker)
    @foreach($willsCase->documents_to_register_aiker as $doc)
  • {{ $doc }} {{ isset($willsCase->registration_completed_aiker[$doc]) ? \Carbon\Carbon::parse($willsCase->registration_completed_aiker[$doc])->format('d/m/Y') : '—' }}
  • @endforeach
@else

None selected.

@endif
Registered by External
@if($willsCase->documents_to_register_external)
    @foreach($willsCase->documents_to_register_external as $doc)
  • {{ $doc }} {{ isset($willsCase->registration_completed_external[$doc]) ? \Carbon\Carbon::parse($willsCase->registration_completed_external[$doc])->format('d/m/Y') : '—' }}
  • @endforeach
@else

None selected.

@endif
{{-- NOTES --}} @elseif($activeTab === 'notes') {{-- TASKS --}} @elseif($activeTab === 'tasks') {{-- DOCUMENTS --}} @elseif($activeTab === 'documents') {{-- HISTORY --}} @elseif($activeTab === 'history') {{-- ADDRESSES --}} @elseif($activeTab === 'addresses') {{-- SENDERS --}} @elseif($activeTab === 'senders')
@endif