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