@if($viewMode)
{!! strtoupper($customer->full_name) !!}
|
{!! $customer->mobile_1 !!}
{{ isset($customer->mobile_2) ? ','. $customer->mobile_2 : ''}}
|
@else
{!! strtoupper($customer->full_name) !!}
|
{!! $customer->mobile_1 !!}
{{ isset($customer->mobile_2) ? ','. $customer->mobile_2 : ''}}
|
{!! $customer->gender !!} |
@if($customer->date_of_birth){{ Carbon\Carbon::parse($customer->date_of_birth)->format('d-m-Y') }}@endif |
{{-- View File | --}}
@if ($create) @endif
@if(isset($change) && $change == true) @livewire("customer.customer-change-component",['parentReference' => $reference,'transactionId' => $transactionId,'old_customer_id' => $customer->id], key($index.$customer->id)) @endif
|
@endif
@empty