@extends('adminlte::page') @section('title', 'Withdrawal Requests') @section('content_header')

Withdrawal Requests

@stop @section('content')

Withdrawal Requests List

Reset

{{ number_format($stats['total'], 0) }}

Total Requests

{{ number_format($stats['pending'], 0) }}

Pending

{{ number_format($stats['approved'], 0) }}

Approved

{{ number_format($stats['rejected'], 0) }}

Rejected

@forelse($withdrawals as $withdrawal) @empty @endforelse
ID User Amount Status Payment Method Created At Actions
{{ $withdrawal->id }} {{ $withdrawal->user->name }} Rp {{ number_format($withdrawal->amount, 2) }} {{ ucfirst($withdrawal->status) }} {{ $withdrawal->payment_method }} {{ $withdrawal->created_at->format('Y-m-d H:i') }} View
No withdrawal requests found.
{{ $withdrawals->links() }}
@stop