{{ config('app.name') }}
{{ config('app.address', '') }}
Customer List
Generated on {{ now()->format('d M Y') }}
Name
Email
Phone
Address
@foreach($customers as $customer)
{{ $customer->name }}
{{ $customer->email ?? '-' }}
{{ $customer->phone ?? '-' }}
{{ $customer->address ?? '-' }}
@endforeach
Print