@php
$pspsettingdeposit = \App\Models\PSPSetting::where('status','1')->where('type','deposit')->orderby('order_no','asc')->get();
@endphp
@foreach($pspsettingdeposit as $psp)
@php
$explodecure = explode(',', $psp->country);
@endphp
@if($psp->pgid == '2' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
Bank Transfer
@endif
@endif
@if($psp->pgid == '1' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
Cash
@endif
@endif
@if($psp->pgid == '3' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
USDT
@endif
@endif
@if($psp->pgid == '4' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
Neteller
@endif
@endif
@if($psp->pgid == '5' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
Paypal
@endif
@endif
@if($psp->pgid == '6' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
Skrill
@endif
@endif
@if($psp->pgid == '7' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
Sticpay
@endif
@endif
@if($psp->pgid == '8' && $psp->status == '1')
@if(in_array(Auth::user()->country,$explodecure) || $psp->country == 'all')
UPI
@endif
@endif
@endforeach