@extends('layouts.app') @section('header-title', __('Customers')) @section('content')

{{ __('All Customers') }}

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