@if($methods->count())
| # |
Method Name |
Type |
Bank / Details |
Account No. |
Cheque |
Status |
Actions |
@foreach($methods as $method)
|
{{ $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' }}
|
|
@endforeach
{{ $methods->links() }}
@else
No Payment Methods
Configure your payment channels.
@endif