mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
10 lines
303 B
PHP
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>
|