@extends('layouts.app') @section('title', 'Customer Details') @section('page-title', 'Customer Details') @section('content')
Customer Code: {{ $customer->customer_code }}
Name: {{ $customer->name }}
Phone: {{ $customer->phone }}
Email: {{ $customer->email ?? 'N/A' }}
Status: {{ ucfirst($customer->status) }}
Date of Birth: {{ $customer->date_of_birth?->format('d M Y') ?? 'N/A' }}
Gender: {{ ucfirst($customer->gender ?? 'N/A') }}
Address: {{ $customer->address ?? 'N/A' }}