@extends('layouts.master') @section('title', 'Case Details - Prolex Law Firm') @section('content')

Case Details

Case ID:
{{ $case->case_code }}
Client Name:
{{ $case->client ? $case->client->full_name : 'N/A' }}
Case Type:
{{ $case->type }}
Case Category:
{{ $case->caseCategory ? $case->caseCategory->category_description : 'N/A' }}
Assigned Lawyer:
{{ $case->lawyer ? $case->lawyer->full_name : 'N/A' }}
Status:
{{ $case->status }}
Created At:
{{ $case->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $case->updated_at->format('M d, Y H:i') }}
Edit Case Back to Cases
@endsection