@extends('layouts.simple.master') @section('title', 'Default') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Payment Gateways

@endsection @section('breadcrumb-items') @endsection @section('content') @php $payment_gateways = null; @endphp
@if (strtolower(Request::segment(1)) === 'deposit_payment_gateways') @php $payment_gateways = $deposit_payment_gateways; @endphp
Deposit Payment Gateways
@else @php $payment_gateways = $withdraw_payment_gateways; @endphp
Withdraw Payment Gateways
@endif
@if (!empty($payment_gateways)) @foreach ($payment_gateways as $payment_gateway) @if($payment_gateway->entity_title == 'Payoneer')
@endif @if($payment_gateway->entity_title == 'Payeer')
@endif @if($payment_gateway->entity_title == 'Perfect Money')
@endif @if($payment_gateway->entity_title == 'Skrill')
@endif @if($payment_gateway->entity_title == 'Neteller')
@endif @if($payment_gateway->entity_title == 'Card')
@endif @if($payment_gateway->entity_title == 'Crypto')
@endif @endforeach @endif
@endsection @section('script') @endsection