mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
34 lines
602 B
PHP
34 lines
602 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @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'];
|
||
|
|
||
|
protected $fillable = ['name'];
|
||
|
}
|