@extends('dashboard.body.main') @section('container')
@if (session()->has('success')) @endif

Customer List

A customer dashboard lets you easily gather and visualize customer data from optimizing
the customer experience, ensuring customer retention.

Add Customer Clear Search
@foreach ($customers as $customer) @endforeach
No. Action
{{ (($customers->currentPage() * 10) - 10) + $loop->iteration }} {{ $customer->name }} {{ $customer->email }} {{ $customer->phone }} {{ $customer->city }}
@method('delete') @csrf
{{ $customers->links() }}
@endsection