@extends('layouts.app') @section('title', 'Payments Methods List') @section('content')

Payments Methods List

@if(session('success')) @elseif(session('error')) @endif
@forelse($payments_methods as $index => $method) @empty @endforelse
# Name Code Description Actions
{{ $index + 1 }} {{ $method->name }} {{ $method->code }} {{ $method->description ?? '-' }}
@csrf @method('DELETE')
No payment methods found.
@endsection @push('scripts') @endpush