@extends('layouts.tenant') @section('title', $client->name) @section('content')

{{ $client->name }}

Client since {{ $client->created_at->format('F j, Y') }}

Edit
@csrf @method('DELETE')
@if(session('success'))

{{ session('success') }}

@endif

Basic Information

Full Name
{{ $client->name }}
@if($client->company)
Company
{{ $client->company }}
@endif @if($client->email) @endif @if($client->phone) @endif
Status
{{ ucfirst($client->status) }}
@if($client->address || $client->city || $client->state || $client->zip || $client->country)

Address

@if($client->full_address)
{{ $client->full_address }}
@else
@if($client->address)
Street Address
{{ $client->address }}
@endif @if($client->city)
City
{{ $client->city }}
@endif @if($client->state)
State/Province
{{ $client->state }}
@endif @if($client->zip)
ZIP/Postal Code
{{ $client->zip }}
@endif @if($client->country)
Country
{{ $client->country }}
@endif
@endif
@endif @if($client->notes)

Notes

{{ $client->notes }}
@endif

Quick Actions

@if($client->email) Send Email @endif @if($client->phone) Call Client @endif Edit Client

Client Details

Client ID
#{{ $client->id }}
Created
{{ $client->created_at->format('F j, Y') }}
Last Updated
{{ $client->updated_at->format('F j, Y') }}
@if($client->custom_fields && count($client->custom_fields) > 0)
Custom Fields
@foreach($client->custom_fields as $field => $value)
{{ $field }}: {{ $value }}
@endforeach
@endif
@endsection