@if(session('success'))
@endif
@if(session('error'))
@endif
| Name |
Phone |
Email |
Address |
Actions |
@forelse($customers as $customer)
| {{ $customer->name }} |
{{ $customer->phone }} |
{{ $customer->email }} |
{{ $customer->address }} |
|
@empty
| No customers found. |
@endforelse
@if($customers->hasPages())
{{ $customers->links() }}
@endif