@extends('layouts.app') @section('content')

Customer Management

Note

Manage and view all customer records

@forelse ($customers as $cust) @empty @endforelse
# Customer Details Contact Info Tax Info Location Actions
#{{ str_pad($cust->id_customer, 6, '0', STR_PAD_LEFT) }} {{ $cust->registration_name }}
ID: {{ $cust->identification_no ?? '-' }}
@if($cust->identification_type == 'NRIC') NRIC: {{ $cust->identification_no ?? '-' }} @elseif($cust->identification_type == 'BRN') REG: {{ $cust->registration_no ?? '-' }} @endif
{{ $cust->phone ?? '-' }}
{{ $cust->email ?? '-' }}
TIN: {{ $cust->tin_no ?? '-' }}
SST: {{ $cust->sst_registration ?? '-' }}
{{ $cust->city_name ?? '-' }}
{{ $cust->postal_zone ?? '-' }}, {{ $cust->country_code ?? 'MYS' }}
@csrf @method('DELETE')
No customers found.
@endsection