mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
9 lines
398 B
PHP
9 lines
398 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">
|
|
{{ $invoice->auto_bill_enabled ? ctrans('texts.auto_bill_enabled') : ctrans('texts.auto_bill_disabled') }}
|
|
</span>
|
|
</label>
|