2021-06-25 10:09:57 +02:00
|
|
|
<label class="flex items-center cursor-pointer">
|
|
|
|
<input type="checkbox" class="form-checkbox mr-2"
|
2021-08-10 07:39:34 +02:00
|
|
|
wire:change="updateAutoBilling" {{ $invoice->auto_bill_enabled || $invoice->auto_bill === 'optout' ? 'checked' : '' }}>
|
2021-06-25 10:09:57 +02:00
|
|
|
|
|
|
|
<span class="text-sm leading-5 font-medium text-gray-900">
|
2021-08-10 07:39:34 +02:00
|
|
|
{{ $invoice->auto_bill_enabled || $invoice->auto_bill === 'optout' ? ctrans('texts.auto_bill_enabled') : ctrans('texts.auto_bill_disabled') }}
|
2021-06-25 10:09:57 +02:00
|
|
|
</span>
|
|
|
|
</label>
|