1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-23 09:51:35 +02:00
invoiceninja/resources/views/billing-portal/v3/payments/methods.blade.php
2024-02-15 19:33:34 +01:00

10 lines
303 B
PHP

<div>
<h1 class="text-2xl">{{ ctrans('texts.payment_methods') }}</h1>
@foreach($methods as $method)
<button wire:click="handleSelect('{{ $method['company_gateway_id'] }}', '{{ $method['gateway_type_id'] }}')">
{{ $method['label'] }}
</button>
@endforeach
</div>