User Name |
{{ $withdraw->username}} |
Request Amount |
{{ $withdraw->amount}}
|
@php
if($withdraw->payment_method == '1'){
$type= 'Paytm';
}else if($withdraw->payment_method == '2'){
$type= 'GooglePay';
}else{
$type= 'PhonePe Pay';
}
@endphp
Request Number |
{{ $withdraw->request_number}} |
Payment Method |
{{ $type }} Transfer |
{{ $type }} Number |
{{ $withdraw->transfer_number}} |
Request Date |
{{ date('d M Y h:i:s A',strtotime($withdraw->request_date)) }} |
Request Accept Date |
{{ ($withdraw->accept_date == '') ? 'N/A' : date('d M Y h:i:s A',strtotime($withdraw->accept_date)) }} |
Remark |
{{ ($withdraw->remark == '') ? 'N/A' : $withdraw->remark }} |
Payment Receipt |
{{ ($withdraw->receipt == '') ? 'N/A' : $withdraw->receipt }} |
|
|
 |