@foreach($clientsArray as $client)
| {{ $client['id'] }} |
{{ trim(($client['firstname'] ?? '') . ' ' . ($client['lastname'] ?? '')) ?: '-' }} |
{{ $client['email'] ?: '-' }} |
{{ $client['companyname'] ?: '-' }} |
{{ $client['datecreated'] ?? '-' }} |
{{ $client['status'] ?? '-' }} |
@endforeach