@lang('modules.billing.addPaymentMethod')
@forelse ($methods as $method) @empty @endforelse
@lang('modules.billing.name') @lang('modules.billing.description') @lang('app.status') @lang('app.action')
@if ($method->name === 'cash') {{ __('modules.order.payViaCash') }} @elseif ($method->name === 'bank_transfer') {{ __('modules.billing.payOffline') }} @else {{ $method->name }} @endif {{ $method->description ? str($method->description)->limit(100) : '--' }} @if ($method->status == 'active') @lang('app.active') @else @lang('app.inactive') @endif @lang('app.update') @if (!in_array($method->name, ['cash', 'bank_transfer'])) @endif
@lang('messages.noOfflinePaymentMethodFound')
{{ $methods->links() }}
{{ $methodId ? __('app.update') : __('app.add') }} @lang('modules.billing.offlinePaymentMethod') @if ($showPaymentMethodForm)
@csrf
@php $isSystemMethod = $methodId && in_array($name, ['cash', 'bank_transfer']); $displayName = $name === 'cash' ? __('modules.order.payViaCash') : ($name === 'bank_transfer' ? __('modules.billing.payOffline') : $name); @endphp @if ($isSystemMethod)

{{ __('messages.systemPaymentMethodCannotBeEdited') }}

@else @endif
@if ($methodId)
@endif
{{ $methodId ? __('app.update') : __('app.add') }} @lang('app.cancel')
@endif @lang('modules.billing.deleteOfflinePaymentMethod') @lang('modules.billing.askDeleteOfflinePaymentMethod') {{ __('app.cancel') }} @if ($deleteId) {{ __('app.delete') }} @endif