@extends('admin.layouts.app') @section('content')
{{-- Failed --}} @if (Session::has("failed")) @endif {{-- Success --}} @if(Session::has("success")) @endif
{{-- Payment methods --}}
@foreach ($payment_methods as $payment_method) @endforeach
{{ __('Payment Method') }} {{ __('Installed') }} {{ __('Status') }} {{ __('Actions') }}
{{ __($payment_method->name) }}
@if ($payment_method->is_status == 'disabled') {{ __('Not Installed Yet' )}} @else {{ __('Installed' )}} @endif @if ($payment_method->status == 0) {{ __('Inactive') }} @else {{ __('Active') }} @endif
{{-- Footer --}} @include('admin.includes.footer')
{{-- Payment gateway modal --}} {{-- Custom JS --}} @section('custom-js') @endsection @endsection