@extends('layouts.app') @section('title', 'Payment Methods') @section('content')
Add Payment Method
@if($methods->count())
@foreach($methods as $method) @endforeach
# Method Name Type Bank / Details Account No. Cheque Status Actions
{{ $loop->iteration + ($methods->currentPage() - 1) * $methods->perPage() }} {{ $method->method_name }} {{ strtoupper($method->type) }} {{ $method->bank_name ?? '—' }}{{ $method->branch ? ' (' . $method->branch . ')' : '' }} {{ $method->account_number ?? '—' }} @if($method->cheque_enabled) @else @endif {{ $method->is_active ? 'Active' : 'Inactive' }}
@csrf @method('DELETE')
{{ $methods->links() }}
@else
No Payment Methods

Configure your payment channels.

@endif
@endsection