@extends('layouts.app') @section('title', 'Withdrawal History - ' . config('app.name')) @section('content')
Total Requests
{{ $withdrawals->total() }}
Approved
{{ $withdrawals->where('withdraw_status', 1)->count() }}
Pending
{{ $withdrawals->where('withdraw_status', 0)->count() }}
Rejected
{{ $withdrawals->where('withdraw_status', 2)->count() }}
| Date | Amount | Method | Status | Notes |
|---|---|---|---|---|
| {{ $withdrawal->created_at->format('M d, Y H:i') }} | ${{ number_format($withdrawal->amount, 2) }} | @if($withdrawal->withdraw_method_id == 1) PayPal @elseif($withdrawal->withdraw_method_id == 2) Bank Transfer @else Other @endif | @if($withdrawal->withdraw_status == 1) Approved @elseif($withdrawal->withdraw_status == 0) Pending @elseif($withdrawal->withdraw_status == 2) Rejected @endif | @if($withdrawal->notes) {{ Str::limit($withdrawal->notes, 50) }} @else - @endif |
Your withdrawal request is being reviewed. This usually takes 2-5 business days.
Your withdrawal has been approved and will be processed to your selected payment method.
Your withdrawal was rejected. Please check the notes for more information.