Insurance Statistics

@if(session()->has('error'))
{{ session('error') }}
@endif @if(count($records) > 0)
@foreach($records as $record) @endforeach
File No Claim Number Company Name Appraiser Business State Appraisal Amount Cycle Time (Days) Total Amt Parts
{{ $record->file_no }} {{ $record->claim_number }} {{ $record->company_name }} {{ $record->appraiser_name ?? 'N/A' }} {{ $record->business_state_name ?? $record->business_state_code ?? 'N/A' }} ${{ number_format((float)$record->appraisal_amount ?? 0, 2) }} {{ $record->cycle_time ?? 'N/A' }} ${{ number_format($record->partamountvalue, 2) }}
@elseif($records !== null && count($records) == 0)
No records found for the selected criteria.
@endif