@extends('agent.layouts.app') @section('title', 'My Payouts') @section('content')

My Payouts

View your payout history

Pending
RM {{ number_format($stats['pending'], 2) }}
Processing
RM {{ number_format($stats['processing'], 2) }}
Completed
RM {{ number_format($stats['completed'], 2) }}
Clear
@if($payouts->count() > 0) @foreach($payouts as $payout) @endforeach
Date Commissions Amount Method Status Action
{{ $payout->created_at->format('d M Y') }} {{ $payout->commission_count }} RM {{ number_format($payout->total_amount, 2) }} {{ $payout->payment_method ?: '-' }} {{ ucfirst($payout->status) }} View
{{ $payouts->appends(request()->query())->links() }}
@else

No payouts yet

Payouts will be created when you have approved commissions.

@endif

About Payouts

Payouts are processed by the admin team. Once your approved commissions reach the minimum payout threshold, a payout will be created and processed to your registered bank account.

@endsection