@extends('layouts.app') @section('title', 'Payout Management - Vendor') @section('content')
@include('vendor.partials.sidebar-column')

Finance Desk

Dashboard
Payout History
@forelse($payouts as $payout) @empty @endforelse
Reference ID Amount Status Date Action
#PAY-{{ str_pad($payout->id, 5, '0', STR_PAD_LEFT) }}
TXN: {{ $payout->transaction_id ?? 'Processing...' }}
₹{{ number_format($payout->amount, 2) }}
@if($payout->status === 'approved') Success @elseif($payout->status === 'pending') Pending @else Rejected @endif
{{ $payout->created_at->format('d M, Y') }}
Verified on {{ $payout->updated_at->format('d M') }}

No Payouts Yet

You haven't requested any withdrawals from your wallet balance.

@if($payouts->hasPages()) @endif
Wallet Intelligence
Available Funds

₹{{ number_format($stats['wallet_balance'], 2) }}

Pending Payouts: ₹{{ number_format($stats['pending_payout'], 2) }}
Financial Logs
@foreach($recentActivities as $activity)
@if($activity['type'] == 'success') @elseif($activity['type'] == 'request') @else @endif
{{ $activity['title'] }}
{{ $activity['time'] }}
@endforeach
Total Life-time Earnings

₹{{ number_format($stats['total_withdrawn'] + $stats['wallet_balance'], 2) }}

Track your business growth metrics in the Earnings section.

@endsection