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

{{ __('All Customers') }}

{{-- --}} @forelse($customers as $key => $customer) {{-- --}} @empty @endforelse
{{ __('SL') }}. {{ __('Profile') }} {{ __('Name') }} {{ __('Phone') }} {{ __('Email') }} {{ __('Gender') }} {{ __('Date of Birth') }}{{ __('Action') }}
{{ ++$key }} {{ Str::limit($customer->fullName, 50, '...') }} {{ $customer->phone ?? 'N/A' }} {{ $customer->email ?? 'N/A' }} {{ $customer->gender ?? 'N/A' }} {{ $customer->date_of_birth ?? 'N/A' }}
{{ __('No Data Found') }}
{{ $customers->withQueryString()->links() }}
@endsection @push('scripts') @endpush