@extends('layouts.admin') @section('title', $customer->full_name) @section('page-title', $customer->full_name) @section('content')

Code: {{ $customer->customer_code }}

{{ $customer->status }}
@can('edit customers')Edit@endcan @can('create measurements')Add Measurement@endcan Measurements
Full name
{{ $customer->full_name }}
Mobile
{{ $customer->mobile ?? '-' }}
Alternate mobile
{{ $customer->alternate_mobile ?? '-' }}
WhatsApp
{{ $customer->whatsapp_number ?? '-' }}
Email
{{ $customer->email ?? '-' }}
Gender
{{ $customer->gender ?? '-' }}
Date of birth
{{ $customer->date_of_birth?->format('d M Y') ?? '-' }}
Anniversary
{{ $customer->anniversary_date?->format('d M Y') ?? '-' }}
Preferred branch
{{ $customer->preferredBranch?->name ?? '-' }}
Communication
{{ $customer->preferred_communication_method ?? '-' }}
Address
{{ $customer->address ? $customer->address : '-' }}{{ $customer->city ? ', ' . $customer->city : '' }}{{ $customer->area ? ', ' . $customer->area : '' }}
Notes
{{ $customer->notes ?? '-' }}
Remarks
{{ $customer->remarks ?? '-' }}
@if($customer->tags && count($customer->tags) > 0)
Tags
@foreach($customer->tags as $tag){{ $tag }}@endforeach
@endif

Order history will appear here (Phase 3).

Measurement history (placeholders).

@if($customer->measurementProfiles->isNotEmpty()) View all measurements @else

No measurements yet. Add measurement profile

@endif

Payment history will appear here (Phase 3).

Outstanding balance will appear here (Phase 3).

@endsection