@extends('layouts.admin', ['header' => true, 'nav' => true, 'demo' => true]) @section('content')
@if (count($payment_methods) != 0) @foreach ($payment_methods as $payment_method) @endforeach @else @endif
{{ __('Payment Method') }} {{ __('Installed') }} {{ __('Status') }} {{ __('Actions') }}
{{ __($payment_method->payment_gateway_name) }}
@if ($payment_method->is_status == 'disabled') {{ __('Not Installed Yet' )}} @else {{ __('Installed' )}} @endif @if ($payment_method->status == 0) {{ __('Inactive') }} @else {{ __('Active') }} @endif
@if ($payment_method->status == 0) {{ __('Activate') }} @else {{ __('Deactivate') }} @endif
{{ __('NO PAYMENT METHODS FOUND') }}
@include('admin.includes.footer')
@endsection