Clients List

Generated on: {{ now()->format('Y-m-d H:i:s') }}

@if(request('status') && request('status') != 'all')

Status: {{ ucfirst(request('status')) }}

@endif
@foreach($headings as $heading) @endforeach @foreach($clients as $client) @foreach($columns as $column) @if($column === 'status') @elseif(str_contains($column, '.')) @php $parts = explode('.', $column); $relation = $parts[0]; $attribute = $parts[1]; @endphp @else @endif @endforeach @endforeach
{{ $heading }}
{{ $client->active ? 'Active' : 'Inactive' }}{{ $client->$relation ? $client->$relation->$attribute : 'N/A' }}{{ $client->{$column} ?? 'N/A' }}