Withdrawal list
@forelse ($transactions as $transaction)
Withdrawal Time: {{ $transaction->created_at->format('d/m/Y h:i a') }}
Withdrawal Amount: {{ number_format($transaction->amount) }} {{ $settings_->where('key', 'currency')->first()->value ?? '' }}
Withdrawal Status: @if ($transaction->status == 'pending') Under Review @elseif($transaction->status == 'approve') Withdrawal Successfully @elseif($transaction->status == 'reject') Rejected Withdrawal @endif
@empty

We haven't received any withdrawals so far.

@endforelse