1
0
mirror of https://github.com/robonen/education-project.git synced 2026-03-20 02:44:31 +00:00

Модуль Задания(fix some bugs)

This commit is contained in:
ashen-1-dev
2020-12-11 00:23:29 +07:00
parent dda49ceb17
commit 854ffc83c8
7 changed files with 39 additions and 6 deletions

View File

@@ -9,6 +9,6 @@ class TaskFile extends Model
{
use HasFactory;
protected $table = 'task_files';
protected $fillable = ['name', 'type', 'extension', 'url', 'task_id', 'user_id'];
protected $fillable = ['name', 'type', 'extension', 'url', 'task_id', 'user_id', 'review'];
protected $hidden = ['review'];
}