Customer Information
- Name: {{ $customer->first_name }} {{ $customer->last_name }}
- Email: {{ $customer->email ?? 'N/A' }}
- Phone: {{ $customer->phone ?? 'N/A' }}
- Gender: {{ ucfirst($customer->gender) }}
- Date of Birth: {{ \Carbon\Carbon::parse($customer->date_of_birth)->toFormattedDateString() }}
Address
- City: {{ $customer->city ?? 'N/A' }}
- State: {{ $customer->state ?? 'N/A' }}
- Country: {{ $customer->country ?? 'N/A' }}
- Postal Code: {{ $customer->postal_code ?? 'N/A' }}