@forelse($customers as $customer)
|
|
{{ mb_substr($customer->name ?? 'N', 0, 1) }}
{{ $customer->name }}
|
{{ $customer->email }}
|
{{ $customer->address }}
|
{{ $customer->phone }}
|
{{ $customer->created_at->format('M d, Y h:i A') }}
|
|
@empty
| No Customer found. |
@endforelse