@extends('admin.layouts.home') @section('title', 'Withdraw Requests') @section('content')

Withdraw Requests

@php $withdrawMethod = [ 1=>'Stripe', 2=>'Paypal', 3=>'Flutterwave', 4=>'Paystack' ]; @endphp @forelse($withdrawRequests as $request) @empty @endforelse
ID Username Amount Withdraw Type Status Created At Action
{{ $request->id }} {{ $request->user->username }} {{ number_format($request->amount, 2) }} {{ $withdrawMethod[$request->type] ?? $request->type }} @if($request->status == 1) Pending @elseif($request->status == 2) Approved @else Rejected @endif {{ $request->created_at->format('Y-m-d H:i:s') }} View
No withdraw requests found
{{ $withdrawRequests->links('pagination::bootstrap-5') }}
@endsection