mirror of https://github.com/Devoalda/LaDo.git
22 lines
371 B
PHP
22 lines
371 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use App\Traits\UuidTrait;
|
|
|
|
class Todo extends Model
|
|
{
|
|
use HasFactory, UuidTrait;
|
|
|
|
protected $fillable = [
|
|
'title',
|
|
'description',
|
|
'due_start',
|
|
'due_end',
|
|
'user_id',
|
|
'completed_at',
|
|
];
|
|
}
|