@extends('backend.master') @section('title','Payment Methods') @push('styles') @endpush @section('content')
{{-- header --}}

Payment Methods

{{-- Table (desktop) --}} {{-- Cards (mobile) --}}
@forelse($methods as $m)
@if($m->logo_path) logo @else @endif
{{ $m->label }}
Key: {{ $m->key }}
{{ $m->is_active ? 'Active' : 'Disabled' }}
Agent
{{ $m->agent_number ?: '-' }}
Sort
{{ $m->sort }}
Edit
@csrf @method('PATCH')
@csrf @method('DELETE')
@empty
No methods found.
@endforelse
{{ $methods->links() }}
@endsection