UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_593f61bc9434
/
app
/
Models
/
Environment
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
TaskSent.php
<?php namespace EstudioLMS\Models\Environment; use EstudioLMS\Models\Courses\Resources\TaskLesson; use Illuminate\Database\Eloquent\Model; /** * */ class TaskSent extends Model { protected $fillable = [ 'course_id', 'task_lesson_id', 'user_id', 'redaction', 'task_upload', 'sended_date', 'final_note', 'teacher_comments', 'status' // (1)Recebido - (2)Refazer - (3)Finalizado ]; /** * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ public function taskLesson() { return $this->belongsTo(TaskLesson::class); } }
Copyright © 2026 - UnknownSec