@extends('backend.index') @section('content')
| User | Amount | Payment Method | Payment Details | Requested at | Action |
|---|---|---|---|---|---|
| {{ $withdraw->user->name }} | {{ number_format($withdraw->amount, 2) }} {{ config('settings.currency', 'USD') }} | {{ ucwords($withdraw->user->payment_method) }} | @if($withdraw->user->payment_method == 'paypal') {{ $withdraw->user->payment_paypal }} @else {{ $withdraw->user->payment_bank }} @endif | {{ \Carbon\Carbon::parse($withdraw->created_at)->format('M j, Y') }} | @if($withdraw->paid) @else @endif |