1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Add BACS to payment methods

This commit is contained in:
Lars Kusch 2022-12-16 11:34:00 +01:00
parent 380cff056a
commit 974f4b2ca3

View File

@ -9,7 +9,7 @@
<option>20</option>
</select>
</div>
<div class="relative" x-data="{ open: false }" x-on:click.away="open = false">
<div class="relative" x-data="{ open: false }" x-on:click.away="open = false">Add BACS
<!-- Add payment method button -->
@if($client->getCreditCardGateway() || $client->getBankTransferGateway())
<button x-on:click="open = !open" class="button button-primary bg-primary" data-cy="add-payment-method">{{ ctrans('texts.add_payment_method') }}</button>
@ -25,6 +25,11 @@
{{ ctrans('texts.bank_account') }}
</a>
@endif
@if($client->getBACSGateway())
<a data-cy="add-bacs-link" href="{{ route('client.payment_methods.create', ['method' => App\Models\GatewayType::BACS]) }}" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100 transition ease-in-out duration-150">
{{ ctrans('texts.bacs') }}
</a>
@endif
</div>
</div>
@endif