1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 21:52:35 +01:00
invoiceninja/resources/views/billing-portal/v3/payments/methods.blade.php

10 lines
303 B
PHP
Raw Normal View History

2024-02-15 19:33:34 +01:00
<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>