Transactions

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

No data

@endforelse