| ID |
Supplier Code |
Name |
Email |
Phone |
Address |
Status |
Actions |
@forelse($customers as $customer)
| {{ $customer->id }} |
{{ $customer->supplier_code ?? 'N/A' }} |
{{ $customer->name }} |
{{ $customer->email ?? 'N/A' }} |
{{ $customer->phone ?? 'N/A' }} |
{{ Str::limit($customer->address, 30) ?? 'N/A' }} |
@if($customer->status == 1)
Active
@else
Inactive
@endif
|
|
@empty
| No customers found |
@endforelse
{{ $customers->links() }}