{{ $customer->name }} Customer Module {{ $customer->name }}

{{ $customer->company ?: 'ORG/Institute not added' }}

Review the saved details before you connect this customer to order intake.

Client Name
{{ $customer->name ?: 'Not added' }}
ORG/Institute
{{ $customer->company ?: 'Not added' }}
Contact Person
{{ $customer->contact_person ?: 'Not added' }}
Contact No.
{{ $customer->contact_no ?: 'Not added' }}
Delivery Address
{{ $customer->delivery_address ?: 'Not added' }}
City
{{ $customer->city ?: 'Not added' }}
Postal Code
{{ $customer->postal_code ?: 'Not added' }}
Country
{{ $customer->country ?: 'Not added' }}
Notes
{{ $customer->notes ?: 'No notes added' }}

Directory state

Customer status
{{ $customer->is_active ? 'Active' : 'Inactive' }}
Created by
{{ $customer->creator?->name ?: 'System' }}
Created on
{{ $customer->created_at?->format('d M Y, h:i A') }}
Last updated
{{ $customer->updated_at?->format('d M Y, h:i A') }}