@extends('layouts.app') @section('title', 'Agents') @section('content')
Manage voucher sales agents
| Agent | Contact | Balance | Status | Actions |
|---|---|---|---|---|
|
{{ strtoupper(substr($agent->name, 0, 1)) }}
{{ $agent->name }}
|
{{ $agent->phone ?? '-' }}
{{ $agent->email ?? '-' }}
|
Rp {{ number_format($agent->balance, 0, ',', '.') }} | {{ ucfirst($agent->status) }} | |
|
No agents found |
||||