2020-10-20 10:01:59 +11:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2022-04-27 13:20:41 +10:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-20 10:01:59 +11:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-20 10:01:59 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
2022-01-03 12:20:03 +11:00
|
|
|
use App\Models\Filterable;
|
2020-10-20 10:01:59 +11:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Class TaskStatus.
|
|
|
|
|
*/
|
|
|
|
|
class TaskStatus extends BaseModel
|
|
|
|
|
{
|
|
|
|
|
use SoftDeletes;
|
2022-01-03 12:20:03 +11:00
|
|
|
use Filterable;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2020-10-20 10:01:59 +11:00
|
|
|
/**
|
|
|
|
|
* @var bool
|
|
|
|
|
*/
|
|
|
|
|
public $timestamps = true;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2020-10-20 10:01:59 +11:00
|
|
|
/**
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
2021-01-08 09:03:29 +11:00
|
|
|
protected $fillable = [
|
|
|
|
|
'name',
|
|
|
|
|
'color',
|
|
|
|
|
'status_order',
|
|
|
|
|
];
|
2020-10-20 10:01:59 +11:00
|
|
|
}
|