@extends('backend.layout.master') @section('title', __('Withdraw Gateway Settings')) @section('style') @endsection @section('content')

{{ __('Withdraw Payment Gateways') }}

@foreach ($gateways as $gateway) @endforeach
{{ __('SL NO') }} {{ __('Gateway Name') }} {{ __('Gateway Filed') }} {{ __('Gateway Status') }} {{ __('Action') }}
{{ $loop->iteration }} {{ ucfirst($gateway->name) }} {{ implode(' , ', unserialize($gateway->field)) }}

{{ __('Withdraw Payment Gateway Create') }}

@csrf

{{ __('Gateway required filed.') }}

@can('withdraw-payment-gateway-add')
@endcan
@endsection @section('script') @endsection