@extends('layouts.app') @section('content') {{-- SUCCESS TOAST --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- ERRORS (modal re-open) --}} @if($errors->any()) @endif {{-- OUTER CARD --}}
{{-- Card Header --}}

Payment Gateways

{{-- Breadcrumb + Search --}}
{{-- Card Body --}}
@forelse($gateways as $key => $gateway) @empty @endforelse
Sr No Name Status Action
{{ $key + 1 }} {{ $gateway->name }} @if($gateway->active) Active @else Inactive @endif
No gateways found.

No gateways match your search.

{{-- /card-body --}}
{{-- /card --}} {{-- ══════════════════════════════ ADD / EDIT GATEWAY MODAL ══════════════════════════════ --}} @endsection