| Month | Total Billed Assignment | Total Billing Amount | Total Paid Amount | Total Unpaid Amount | Total Supplements Billed |
|---|---|---|---|---|---|
| This Month | {{ $comparisonSummary['current']['total_files'] }} | ${{ number_format($comparisonSummary['current']['total_invoice_amount'], 2) }} | ${{ number_format($comparisonSummary['current']['total_paid_amount'], 2) }} | ${{ number_format($comparisonSummary['current']['total_invoice_amount'] - $comparisonSummary['current']['total_paid_amount'], 2) }} | {{ $comparisonSummary['current']['supplement_count'] }} |
| Last Month | {{ $comparisonSummary['last_month']['total_files'] }} | ${{ number_format($comparisonSummary['last_month']['total_invoice_amount'], 2) }} | ${{ number_format($comparisonSummary['last_month']['total_paid_amount'], 2) }} | ${{ number_format($comparisonSummary['last_month']['total_invoice_amount'] - $comparisonSummary['last_month']['total_paid_amount'], 2) }} | {{ $comparisonSummary['last_month']['supplement_count'] }} |
| Month | Total Billed Assignment | Total Billing Amount | Total Paid Amount | Total Unpaid Amount | Total Supplements Billed |
|---|---|---|---|---|---|
| This Month | {{ $comparisonSummary['current']['total_files'] }} | ${{ number_format($comparisonSummary['current']['total_invoice_amount'], 2) }} | ${{ number_format($comparisonSummary['current']['total_paid_amount'], 2) }} | ${{ number_format($comparisonSummary['current']['total_invoice_amount'] - $comparisonSummary['current']['total_paid_amount'], 2) }} | {{ $comparisonSummary['current']['supplement_count'] }} |
| Same Month Last Year | {{ $same['total_files'] ?? 0 }} | ${{ number_format($same['total_invoice_amount'] ?? 0, 2) }} | ${{ number_format($same['total_paid_amount'] ?? 0, 2) }} | ${{ number_format(($same['total_invoice_amount'] ?? 0) - ($same['total_paid_amount'] ?? 0), 2) }} | {{ $same['supplement_count'] ?? 0 }} |
| Month | Total Billed Assignment | Total Billing Amount | Total Paid Amount | Total Unpaid Amount | Total Supplements Billed |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::create($item['year'], $item['month'], 1)->format('M Y') }} | {{ $item['total_files'] }} | ${{ number_format($item['total_invoice_amount'], 2) }} | ${{ number_format($item['total_paid_amount'], 2) }} | ${{ number_format($item['total_invoice_amount'] - $item['total_paid_amount'], 2) }} | {{ $item['supplement_count'] }} |
This chart compares this month vs last month, this month vs same month last year, and shows a 3-month trend of key metrics.
| Date | @foreach($dateWiseChart['series'] as $series) @php $isOpen = str_contains(strtolower($series['name']), 'open'); $colorClass = $isOpen ? 'text-blue-700 bg-blue-50' : 'text-green-700 bg-green-50'; @endphp{{ $series['name'] }} | @endforeach
|---|---|
| {{ $day }} | @foreach($dateWiseChart['series'] as $series) @php $isOpen = str_contains(strtolower($series['name']), 'open'); $textColor = $isOpen ? 'text-blue-600' : 'text-green-600'; $fontWeight = ($series['data'][$index] ?? 0) > 0 ? 'font-semibold' : ''; @endphp{{ $series['data'][$index] ?? 0 }} | @endforeach
No comparison data available. Please select a comparison mode.
@endif| # | Month | Total Billed Assignment | Total Billing Amount | Total Paid Amount | Total Unpaid Amount | Total Supplements Billed |
|---|---|---|---|---|---|---|
| {{ $i++ }} | {{ \Carbon\Carbon::createFromDate($insData['year'], $insData['month'], 1)->format('F Y') }} | {{ $insData['total_files'] }} | ${{ number_format($insData['total_invoice_amount'], 2) }} | ${{ number_format($insData['total_paid_amount'], 2) }} | ${{ number_format($insData['total_invoice_amount'] - $insData['total_paid_amount'], 2) }} | {{ $insData['supplement_count'] }} |
| # | Office | Cycle Time | Files Completed |
|---|---|---|---|
| {{ $i+1 }} | {{ $row->officecode }} - {{ $row->officename }} | {{ $cycleTime }} Days | {{ $filesCompleted }} |
| # | File Number | Claim Number | Insurance Company | Date Opened | Office Assigned | Appraiser Assigned | Cycle Time (Days) |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $file->file_no }} | {{ $file->claim_number ?? 'N/A' }} | {{ $file->insurance_company_name ?? 'N/A' }} | {{ $file->created_date ? \Carbon\Carbon::parse($file->created_date)->format('m/d/Y') : 'N/A' }} | @if($file->office_code && $file->office_name) {{ $file->office_code }} - {{ $file->office_name }} @elseif($file->office_name) {{ $file->office_name }} @else N/A @endif | {{ $file->appraiser_name ?? 'N/A' }} | {{ number_format($file->cycle_time, 0) }} Days |