@extends('layouts.master') @section('title', 'Matters Report') @section('styles') @endsection @section('content')
| Status | Count |
|---|---|
| {{ $status }} | {{ $count }} |
| No data | |
| Type | Count |
|---|---|
| {{ $type }} | {{ $count }} |
| No data | |
| Lawyer | Count |
|---|---|
| {{ $lawyer }} | {{ $count }} |
| No data | |
| Client | Count |
|---|---|
| {{ $client }} | {{ $count }} |
| No data | |
| Matter # | Title | Client | Lawyer | Status | Type | Priority | Category | Opened | Closed |
|---|---|---|---|---|---|---|---|---|---|
| {{ $matter->matter_number }} | {{ Str::limit($matter->matter_title, 50) }} | {{ $matter->client_display ?? 'N/A' }} | {{ $matter->lawyer_display ?? 'Unassigned' }} | {{ $matter->status?->name ?? 'N/A' }} | {{ $matter->type?->name ?? 'N/A' }} | {{ $matter->priority?->name ?? 'N/A' }} | {{ $matter->category?->name ?? 'N/A' }} | {{ $matter->opened_date ? \Carbon\Carbon::parse($matter->opened_date)->format('M j, Y') : 'N/A' }} | {{ $matter->closed_date ? \Carbon\Carbon::parse($matter->closed_date)->format('M j, Y') : '-' }} |
| No matters found for the selected criteria. | |||||||||