@php $bankTransfer = $this->methods->where('name', 'Bank Transfer')->first(); $bitcoin = $this->methods->where('name', 'Bitcoin')->first(); $ethereum = $this->methods->where('name', 'Ethereum')->first(); $litecoin = $this->methods->where('name', 'Litecoin')->first(); $usdt = $this->methods->where('name', 'USDT')->first(); @endphp
@if ($bankTransfer->status == 'active')
@endif
@if ($bitcoin->status == 'active')
Enter your Bitcoin wallet address, your funds will be sent to this address.
@endif @if ($ethereum->status == 'active')
Enter your Ethereum wallet address, your funds will be sent to this address.
@endif @if ($litecoin->status == 'active')
Enter your Litcoin wallet address, your funds will be sent to this address.
@endif @if ($usdt->status == 'active')
Enter your USDT.TRC20 wallet Address that will be used to withdraw your funds
@endif
@if ( $usdt->status == 'active' || $bitcoin->status == 'active' || $ethereum->status == 'active' || $litecoin->status == 'active' || $bankTransfer->status == 'active')
Save
@else
No Withdrawal Method Available
@endif