@extends('layouts.vendor') @section('page-title', 'Wallet') @push('styles') @endpush @section('content')
Withdrawal
{{ $txn->created_at->format('M d, Y') }}
-{{ price($txn->amount) }}
{{ ucfirst($txn->status) }}No payouts yet
| Date | Amount | Method | Payment Details | Status | Processed |
|---|---|---|---|---|---|
|
{{ $w->created_at->format('M d, Y') }}
{{ $w->created_at->format('h:i A') }} |
{{ price($w->amount) }} | {{ ucfirst(str_replace('_', ' ', $w->payment_method)) }} | {{ is_array($w->payment_details) ? ($w->payment_details['details'] ?? '-') : ($w->payment_details ?? '-') }} | {{ ucfirst($w->status) }} | @if($w->processed_at) {{ $w->processed_at->format('M d') }} @else — @endif |
|
No withdrawal history yet |
|||||