@section('page-title', 'Pre-Auth Details')

Pre-Auth: {{ $preauth->auth_number }}

{{ $preauth->member->full_name ?? 'N/A' }}

Back

Request Details

Auth Number
{{ $preauth->auth_number }}
Member
{{ $preauth->member->full_name ?? 'N/A' }} ({{ $preauth->member->member_number ?? '' }})
Provider
{{ $preauth->provider->name ?? 'N/A' }}
Policy
{{ $preauth->member->policy->name ?? 'N/A' }}
ICD-10
{{ $preauth->icd10_code }}
Diagnosis
{{ $preauth->diagnosis }}
Procedure
{{ $preauth->procedure_description }}
Requested Date
{{ $preauth->requested_date->format('d M Y') }}
Status
{{ ucfirst($preauth->status) }}
@if($preauth->approved_amount_cents)
Approved Amount
${{ number_format($preauth->approved_amount_cents / 100, 2) }}
Approved Period
{{ $preauth->approved_from?->format('d M Y') }} to {{ $preauth->approved_to?->format('d M Y') }}
@endif @if($preauth->notes)
Notes
{{ $preauth->notes }}
@endif @if($preauth->reviewer)
Reviewed By
{{ $preauth->reviewer->name }} on {{ $preauth->reviewed_at?->format('d M Y H:i') }}
@endif

Documents ({{ ($documents ?? collect())->count() }})

@if(($documents ?? collect())->count() > 0)
@foreach($documents as $doc)

{{ $doc->original_name }}

{{ $doc->file_size_formatted ?? '' }} | {{ $doc->created_at->format('d M Y') }}

Download
@csrf @method('DELETE')
@endforeach
@endif
@csrf
@if($preauth->status === 'pending') @can('approve_preauths')

Approve

@csrf

Reject

@csrf
@endcan @endif