@extends('customers.layout') @push('scripts') @endpush @section('customer-content')

Tenants

Manage your property tenants efficiently

Add New Tenant
@if(request('search')) @endif
@if(request('search')) @endif @if(request('status')) @endif
@if(request('search')) @endif @if(request('property_id')) @endif
@forelse ($customers as $customer) @empty @endforelse
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
@if($customer->AccountStatus === 'A')
@csrf @method('POST')
@else
@csrf @method('POST')
@endif

No customers

Get started by adding a new customer.

@if($customers->hasPages())
@if ($customers->onFirstPage()) Previous @else Previous @endif @if ($customers->hasMorePages()) Next @else Next @endif
@endif
@endsection