@extends('layouts.agent') @section('title', 'Dashboard') @section('content')

Selamat Datang, {{ $agent->name ?? 'Agent' }}!

Saldo: Rp {{ number_format($agent->balance ?? 0, 0, ',', '.') }}

Saldo

Rp {{ number_format($agent->balance ?? 0, 0, ',', '.') }}

Penjualan Hari Ini

{{ $todaySales ?? 0 }}

Penjualan Bulan Ini

{{ $monthSales ?? 0 }}

Komisi Bulan Ini

Rp {{ number_format($monthCommission ?? 0, 0, ',', '.') }}

Jual Voucher

Top Up Saldo

Riwayat

Profil

Paket Voucher Tersedia

@forelse($voucherPackages ?? [] as $package)

{{ $package->name }}

{{ $package->duration }} Hari

Harga Agent

Rp {{ number_format($package->agent_price, 0, ',', '.') }}

Harga Jual

Rp {{ number_format($package->customer_price, 0, ',', '.') }}

Jual
@empty

Belum ada paket voucher

@endforelse

Transaksi Terbaru

Lihat Semua
@forelse($recentTransactions ?? [] as $transaction)

{{ $transaction->description }}

{{ $transaction->created_at->format('d M Y H:i') }}

{{ $transaction->type == 'sale' ? '+' : '' }}Rp {{ number_format($transaction->amount, 0, ',', '.') }}

@empty

Belum ada transaksi

@endforelse
@endsection