@extends('admin.layouts.app') @section('panel')
@forelse($gateways->sortBy('alias') as $k=>$gateway)
status) data-action="{{ route('admin.gateway.automatic.status', $gateway->id) }}" data-message-enable="@lang('Are you sure to enable this gateway?')" data-message-disable="@lang('Are you sure to disable this gateway?')">
{{ __($gateway->name) }}

{{ $gateway->currencies->count() }} @lang('out of') {{ collect($gateway->supported_currencies)->count() }} @lang('supported currencies are currently activated for this gateway.')

@lang('Configure')
@endforeach

@lang('Manual Gateway')

@lang('Add Manual Gateway')
@forelse($manualGateways as $k=>$mGateway)
status) data-action="{{ route('admin.gateway.manual.status', $mGateway->id) }}" data-message-enable="@lang('Are you sure to enable this manual gateway?')" data-message-disable="@lang('Are you sure to disable this manual gateway?')">
{{ __($mGateway->name) }}

@lang('This manual gateway currency is ') {{ __(@$mGateway->currencies->first()->currency) }}

@lang('Configure')
@empty
@endforelse
@endsection @push('breadcrumb-plugins')
@lang('Manual Gateway')
@endpush @push('style') @endpush