@extends('customers.layout') @push('scripts') @endpush @section('customer-content')
|
Customer
|
Contact Information | Unit Details | Account Status | Actions |
|---|---|---|---|---|
|
{{ substr($customer->CustomerName, 0, 1) }}
{{ $customer->AccountNo }}
|
{{ $customer->TelNo }}
{{ $customer->Email ?: 'N/A' }}
|
@if($customer->unit)
{{ $customer->unit->UnitIdentity }}
{{ $customer->unit->property->PropName ?? 'N/A' }}
@else
Not Assigned
@endif
|
@if($customer->AccountStatus === 'A') Active @else Inactive @endif | |