@extends('layouts.app') @section('content') @push('title') {{ $title }} @endpush

{{ __($title) }}

@foreach ($gateways as $gateway) @endforeach
{{ __('SL') }}
{{ __('Image') }}
{{ __('Title') }}
{{ __('Slug') }}
{{ __('Status') }}
{{ __('Mode') }}
{{ __('Action') }}
{{ $loop->iteration }}
{{ $gateway->title }} {{ $gateway->slug }} @if ($gateway->status == ACTIVE)
{{ __('Active') }}
@else
{{ __('Deactive') }}
@endif
@if ($gateway->mode == GATEWAY_MODE_LIVE)
{{ __('Live') }}
@elseif($gateway->slug != 'bank')
{{ __('Sandbox') }}
@endif
@endsection @push('script') @endpush