{{ env('APP_NAME', 'ICT Management System') }}
Customer List · Generated {{ now()->format('Y-m-d H:i') }}
Code
Name
Company
Phone
Email
Status
@foreach ($customers as $customer)
{{ $customer->customer_code }}
{{ $customer->name }}
{{ $customer->company_name }}
{{ $customer->phone }}
{{ $customer->email }}
{{ ucfirst($customer->status) }}
@endforeach