@extends('layouts.app') @section('title', 'View Client Type') @section('content')

Client Type Details

View client type information

Client Type Information
Basic Information
ID
{{ $clientType->id }}
Name
{{ $clientType->name }}
Status
@if($clientType->is_active) Active @else Inactive @endif
@if($clientType->description)
Description
Description
{{ $clientType->description }}
@endif
Timestamps
Created At
{{ $clientType->created_at->format('M d, Y H:i A') }}
Updated At
{{ $clientType->updated_at->format('M d, Y H:i A') }}
@section('styles') @endsection @endsection