@if (!Route::is('dashboard.payment.history'))

Available Balance

See more
@endif @if($user['role'] == 'seller')
Available Withdraw
{{$wallet['currency'] ?? 'N'}}{{number_format($wallet['pending_withdraw'], 2)}}
{{$wallet['currency'] ?? 'N'}}{{number_format($wallet['pending'], 2)}} Awaiting completion

{{$wallet['currency'] ?? 'N'}}{{number_format($wallet['available'], 2)}} Total Earning
@endif
@foreach ($transactions as $transaction) @endforeach @forelse ($paymentHistories as $history ) @if ($history['payment_status'] == 'pending') @elseif ($history['payment_status'] == 'failed') @elseif ($history['payment_status'] == 'cancelled') @else @endif {{-- --}} {{-- Modal --}} @empty @endforelse
Service name Amount Payment status Payment date Action
{{ ucfirst($transaction['type']) }} Request {{ $transaction['amount'] }} {{ ucfirst($transaction['status']) }} {{ Carbon\Carbon::parse($transaction['created_at'])->format('l jS F Y, h:i A') }} @if ($transaction['status'] === 'completed') Paid to Bank @else {{ ucfirst($transaction['status']) }} @endif
{{ $history['booking']['gig']['title'] }} {{ $history['booking']['gig']['currency'] }}{{ number_format($history['amount'],2) }} PendingFailedCancelledCompleted {{ Carbon\Carbon::parse($history['created_at'])->format('l jS F Y, h:i A') }} Receipt @if($history['payment_status'] == 'completed') Receipt @else Pending @endif
No Transaction history found