mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Refactored payment methods display
This commit is contained in:
parent
4fbbf52c4e
commit
68a0db8725
@ -1,9 +1,11 @@
|
|||||||
<div>
|
<div>
|
||||||
<h1 class="text-2xl">{{ ctrans('texts.payment_methods') }}</h1>
|
<h1 class="text-2xl">{{ ctrans('texts.payment_methods') }}</h1>
|
||||||
|
|
||||||
|
<div class="flex flex-col space-y-3 my-3">
|
||||||
@foreach($methods as $method)
|
@foreach($methods as $method)
|
||||||
<button wire:click="handleSelect('{{ $method['company_gateway_id'] }}', '{{ $method['gateway_type_id'] }}')">
|
<button class="flex items-center justify-between mb-4 bg-white rounded px-6 py-4 shadow-sm border" wire:click="handleSelect('{{ $method['company_gateway_id'] }}', '{{ $method['gateway_type_id'] }}')">
|
||||||
{{ $method['label'] }}
|
{{ $method['label'] }}
|
||||||
</button>
|
</button>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user