@extends('layouts.app') @section('content')

Customers

Add Customer
@if(session('success')) @endif {{-- --}}
@forelse($customers as $customer) @empty @endforelse
Name Email Phone Company Address Actions
{{ $customer->name }} {{ $customer->email }} {{ $customer->phone }} {{ $customer->company }} {{ $customer->address }} Edit
@csrf @method('DELETE')
No customers found.
{{ $customers->links('pagination::bootstrap-5') }}
@endsection