@extends('layouts.master') @section('title', 'Lawyer Statement Report') @section('styles') @endsection @section('content')
| Matter # | Matter Title | Client | Status | Opened Date | Cases | Fees Total |
|---|---|---|---|---|---|---|
| {{ $row['matter_number'] ?? ('MAT-' . ($row['matter_id'] ?? '')) }} | {{ $row['matter_title'] ?? 'N/A' }} | {{ $row['client'] ?? 'N/A' }} | {{ $row['status'] ?? 'N/A' }} | {{ !empty($row['opened_date']) ? \Carbon\Carbon::parse($row['opened_date'])->format('M j, Y') : 'N/A' }} | {{ (int)($row['case_count'] ?? 0) }} | ${{ number_format((float)($row['fees_total'] ?? 0), 2) }} |
| No matters found for the selected criteria. | ||||||