@if($customers->count() > 0) @php $num = ($customers->currentPage() - 1) * $customers->perPage() + 1; @endphp @foreach($customers as $customer) @php $num++; @endphp @endforeach
# Name Email Phone Location
{{ $num }}. {{ $customer->name ?? '-' }} {{ $customer->email ?? '-' }} {{ $customer->phone ?? '-' }} {{ $customer->location ?? '-' }}
{{ $customers->links('pagination::bootstrap-4') }}
@else

No Customer found!

@endif