@extends('layouts.horizontal', ['title' => 'Customer Account', 'topbarTitle' => 'Account']) @section('css') @vite(['node_modules/select2/dist/css/select2.min.css']) @endsection @section('content')

{{ $customer->customer_name }}

Customer Account: {{ $customer->customer_name }}

Details of customer account and transactions.

Cell : {{ $customer->customer_cell }}

Email : {{ $customer->customer_email }}

Card : {{ $customer->customer_card }}

Area : {{ $customer->customer_area }}

Care Of : {{ $customer->customer_careof }}

Gender : {{ $customer->customer_gender }}

Birthdate : {{ $customer->customer_birthdate }}

Credit Limit : {{ $customer->allowed_balance }}

Type : {{ $customer->customer_type }}

Since : {{ $customer->customer_created_on }}

Loyalty Points : {{ $customer_loyalty_points }}

Retained : {{ $customer_retained_amount }}

Customer's Service Preference

Customer's Staff Preference

Transactions

List of all transactions made by this customer.
Date Services Price Day Ago Total Tax
@if($customer_balance_invoices->count() > 0)

Balance Invoices

List of all balance invoices for this customer.
@foreach($customer_balance_invoices as $invoice) @endforeach
Invoice # Date Total Payable Amount Paid Balance Recover
{{ $invoice->invoice_number }} {{ $invoice->invoice_date }} {{ $invoice->total_payable }} {{ $invoice->paid_earlier }} {{ $invoice->balance }}
Total Balance: {{ $customer_balance_invoices->sum('balance') }}
@endif

{{ $customer->customer_name }}'s Color Records

List of all color records for this customer.
Record ID Type Color Water Content Date Time (min) Days Ago Charge Remarks Recommendation

{{ $customer->customer_name }}'s Facial Records

List of all facial records for this customer.
Record ID Facial Name Exfoliant Mask Cleanser Date Time Days Ago Charge Remarks

{{ $customer->customer_name }}'s Eyelash Records

List of all eyelash records for this customer.
Record ID Type Thickness Length Curl Full Set/Refill Date Days Ago Charge Remarks
@include('modals.customer_add') @endsection @section('scripts') @endsection