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