@extends('layouts.app') @section('title', 'Customers') @section('content')
@include('admin.partials.sidebar')
@include('admin.partials.topbar')

Customers

Manage your ISP customers

Add Customer
@forelse($customers as $customer) @empty @endforelse
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') : '-' }}
@csrf @method('DELETE')

No customers found

{{ $customers->links() }}
@endsection