mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
51 lines
878 B
PHP
51 lines
878 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com)
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://opensource.org/licenses/AAL
|
||
|
*/
|
||
|
|
||
|
namespace App\Jobs\Client;
|
||
|
|
||
|
|
||
|
use App\Models\Client;
|
||
|
use Illuminate\Foundation\Bus\Dispatchable;
|
||
|
|
||
|
class UpdateClientPaidToDate
|
||
|
{
|
||
|
use Dispatchable;
|
||
|
|
||
|
protected $amount;
|
||
|
|
||
|
protected $client;
|
||
|
|
||
|
/**
|
||
|
* Create a new job instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
|
||
|
public function __construct(Client $client, $amount)
|
||
|
{
|
||
|
$this->amount = $amount;
|
||
|
$this->client = $client;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Execute the job.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
|
||
|
$this->client->paid_to_date += $this->amount;
|
||
|
$this->client->save();
|
||
|
|
||
|
}
|
||
|
}
|