@extends('admin.layout') @section('title', 'Withdrawals') @section('content')
| Reference | User | Amount | Alipay Account | Status | Date | Actions |
|---|---|---|---|---|---|---|
|
{{ $withdrawal->reference }}
|
{{ $withdrawal->user->name }}
{{ $withdrawal->user->email }}
|
¥{{ number_format($withdrawal->amount, 2) }}
|
{{ $alipayName }}
{{ $alipayAccount }}
|
@if($withdrawal->status === 'pending') Pending @elseif($withdrawal->status === 'completed') Completed @else Rejected @endif |
{{ $withdrawal->created_at->format('M d, Y') }}
{{ $withdrawal->created_at->format('g:i A') }}
|
@if($withdrawal->status === 'pending') @else No actions @endif |
|
No withdrawals found
Withdrawal requests will appear here
|
||||||