@extends('layouts.app') @section('content')
Name: {{ $client->name }}
Email: {{ $client->email }}
Phone: {{ $client->phone ?? 'N/A' }}
Brand: {{ optional($client->brandEntity)->name ?? $client->brand ?? 'N/A' }}
@if($client->brandAddress)Invoice Address: {{ $client->brandAddress->label }} - {{ $client->brandAddress->address_line }}
@endif