@extends('layouts.app') @section('title', 'Customers') @section('content')
Manage your ISP customers
| Customer | Contact | Package | Status | Join Date | Actions |
|---|---|---|---|---|---|
|
{{ strtoupper(substr($customer->name, 0, 1)) }}
{{ $customer->name }}
{{ $customer->username ?? '-' }}
|
{{ $customer->phone ?? '-' }}
{{ $customer->email ?? '-' }}
|
@if($customer->package)
{{ $customer->package->name }}
Rp {{ number_format($customer->package->price, 0, ',', '.') }}/mo
@else
No Package
@endif
|
{{ ucfirst($customer->status) }} | {{ $customer->join_date ? $customer->join_date->format('d M Y') : '-' }} | |
|
No customers found |
|||||