@php $title = 'Client Details' @endphp @section('title', __($title)) @extends('layouts/layoutMaster') @section('content')

{{$title}}

Client Name {{$client->name}}
Phone Number {{$client->phone}}
Email {{$client->email}}
Address {{$client->address}}
City/Municipality {{$client->city ?? 'N/A'}}
Province {{$client->state ?? 'N/A'}}
Contact Person {{$client->contact_person_name ?? 'N/A'}}
Remarks {{$client->remarks ?? 'N/A'}}
Created At {{$client->created_at}}
Updated At {{$client->updated_at}}
Status @if($client->status == 'active') Active @else Inactive @endif
@endsection