mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-25 00:45:29 -05:00
10 lines
331 B
PHP
10 lines
331 B
PHP
<div>
|
|
@foreach($methods as $index => $method)
|
|
|
|
<button @click="$wire.dispatch('payment-method-selected', { company_gateway_id: {{ $method['company_gateway_id'] }}, gateway_type_id: {{ $method['gateway_type_id'] }}, amount: {{ $amount }} })">
|
|
{{ $method['label'] }}
|
|
</button>
|
|
|
|
@endforeach
|
|
|
|
</div> |