@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Payment Gateways'), 'buttons'=>[ [ 'name'=>' '.__('Create A Manual Gateway'), 'url'=>route('admin.gateways.create'), ] ]]) @endsection @section('content')
{{ $totalGateways }}

{{ __('Total Gateways') }}

{{ $active_gateway }}

{{ __('Active Gateways') }}

{{ $inactive_gateway }}

{{ __('Inactive Gateways') }}

{{ __('Gateways') }}

@foreach($gateways as $gateway) @endforeach
{{ __('Name') }} {{ __('Minimum Amount') }} {{ __('Maximum Amount') }} {{ __('Charge') }} {{ __('Currency') }} {{ __('Gateway Status') }} {{ __('Payment Mode') }} {{ __('Edit') }}
@if($gateway->logo != null) Image placeholder @endif
{{ $gateway->name }}
{{ number_format($gateway->min_amount,2) }} {{ number_format($gateway->max_amount,2) }} {{ $gateway->charge.strtoupper($gateway->currency) }} {{ strtoupper($gateway->currency) }} {{ $gateway->status == 1 ? 'Active' : 'Disabled' }} {{ $gateway->test_mode == 1 ? 'Sandbox' : 'Live' }}
@endsection