mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
9 lines
470 B
PHP
9 lines
470 B
PHP
<label class="flex items-center cursor-pointer">
|
|
<input type="checkbox" class="form-checkbox mr-2"
|
|
wire:change="updateAutoBilling" {{ $invoice->auto_bill_enabled || $invoice->auto_bill === 'optout' ? 'checked' : '' }}>
|
|
|
|
<span class="text-sm leading-5 font-medium text-gray-900">
|
|
{{ $invoice->auto_bill_enabled || $invoice->auto_bill === 'optout' ? ctrans('texts.auto_bill_enabled') : ctrans('texts.auto_bill_disabled') }}
|
|
</span>
|
|
</label>
|