invoiceninja/app/Models/TaskStatus.php

39 lines
659 B
PHP
Raw Normal View History

2020-10-20 10:01:59 +11:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-10-20 10:01:59 +11:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class TaskStatus.
*/
class TaskStatus extends BaseModel
{
use SoftDeletes;
/**
* @var bool
*/
public $timestamps = true;
/**
* @var array
*/
protected $dates = ['deleted_at'];
2021-01-08 09:03:29 +11:00
protected $fillable = [
'name',
'color',
'status_order',
];
2020-10-20 10:01:59 +11:00
}