1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/resources/views/portal/ninja2020/components/livewire/recurring-invoices-switch-autobilling.blade.php
2023-05-25 16:09:12 +10:00

9 lines
330 B
PHP

<label class="flex items-center cursor-pointer">
<input type="checkbox" class="form-checkbox mr-2"
wire:change="updateAutoBilling" {{ $invoice->auto_bill_enabled ? 'checked' : '' }}>
<span class="text-sm leading-5 font-medium text-gray-900">
{{ ctrans('texts.enable_auto_bill') }}
</span>
</label>