@extends('layouts.app') @section('title', 'Laporan') @section('content')
Total Pendapatan
Rp {{ number_format($totalRevenue ?? 0, 0, ',', '.') }}
{{ abs($revenueGrowth ?? 0) }}% dari periode sebelumnya
Pelanggan Aktif
{{ number_format($activeCustomers ?? 0) }}
{{ abs($customerGrowth ?? 0) }}% pertumbuhan
Invoice Terbayar
{{ number_format($paidInvoices ?? 0) }}
dari {{ number_format($totalInvoices ?? 0) }} total invoice
Penjualan Voucher
{{ number_format($voucherSales ?? 0) }}
Rp {{ number_format($voucherRevenue ?? 0, 0, ',', '.') }}
| Paket | Pelanggan | Pendapatan |
|---|---|---|
|
{{ $package->name }}
{{ $package->speed }}
|
{{ $package->customers_count }} | Rp {{ number_format($package->revenue, 0, ',', '.') }} |
| Tidak ada data | ||
| Nama | Tagihan | Total |
|---|---|---|
|
{{ $collector->name }}
|
{{ $collector->collections_count }} | Rp {{ number_format($collector->total_collected, 0, ',', '.') }} |
| Tidak ada data | ||
| Agent | Voucher Terjual | Pendapatan | Komisi | Saldo |
|---|---|---|---|---|
|
{{ $agent->name }}
{{ $agent->phone }}
|
{{ $agent->vouchers_sold }} | Rp {{ number_format($agent->revenue, 0, ',', '.') }} | Rp {{ number_format($agent->commission, 0, ',', '.') }} | Rp {{ number_format($agent->balance, 0, ',', '.') }} |
| Tidak ada data | ||||