@extends('adminlte::page')
@section('title', 'Client Detail')
@section('content_header')
Client Detail
@endsection
@section('content')
- Type
-
{{ ucfirst($client->client_type) }}
- Name
- {{ $client->display_name }}
- Email
- {{ $client->email ?? '—' }}
- Phone
- {{ $client->phone ?? '—' }}
Edit
Back
| Case No |
Title |
Status |
Opened |
@forelse($client->cases as $case)
| {{ $case->case_number }} |
{{ $case->title }} |
{{ ucfirst($case->status) }} |
{{ optional($case->date_opened)->format('Y-m-d') }} |
@empty
| No cases |
@endforelse
| Title |
Case |
Assignee |
Due |
Status |
@forelse($client->tasks as $t)
| {{ $t->title }} |
@if($t->case)
{{ $t->case->title }}
@else
—
@endif
|
{{ $t->assignee?->name }} |
{{ optional($t->due_date)->format('Y-m-d') ?? '—' }} |
{{ ucfirst($t->status) }} |
@empty
| No tasks |
@endforelse
@endsection
@include('partials.datatables')