@forelse($customers as $customer) @empty @endforelse
Customer Name Email Phone Actions
{{ strtoupper(substr($customer->account_name ?? 'N', 0, 1)) }}
{{ $customer->account_name ?? 'N/A' }}
@if($customer->email) {{ $customer->email }} @else N/A @endif @if($customer->phone_office) {{ $customer->phone_office }} @else N/A @endif

No customers found