mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
35 lines
877 B
PHP
35 lines
877 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||
|
*/
|
||
|
|
||
|
namespace App\Http\Livewire\RecurringInvoices;
|
||
|
|
||
|
use Livewire\Component;
|
||
|
|
||
|
class UpdateAutoBilling extends Component
|
||
|
{
|
||
|
/** @var \App\Models\RecurringInvoice */
|
||
|
public $invoice;
|
||
|
|
||
|
public function updateAutoBilling(): void
|
||
|
{
|
||
|
if ($this->invoice->auto_bill === 'optin' || $this->invoice->auto_bill === 'optout') {
|
||
|
$this->invoice->auto_bill_enabled = !$this->invoice->auto_bill_enabled;
|
||
|
$this->invoice->save();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public function render()
|
||
|
{
|
||
|
return render('components.livewire.recurring-invoices-switch-autobilling');
|
||
|
}
|
||
|
}
|