@php $title = 'Client Details' @endphp @section('title') {{$title}} @endsection @extends('layout') @section('main-content')

{{$title}}

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