2024-06-27 10:29:36 +10:00

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>