mirror of
https://github.com/robonen/education-project.git
synced 2026-03-20 02:44:31 +00:00
16 lines
348 B
PHP
16 lines
348 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AnswerToTask extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'answers_to_task';
|
|
protected $fillable = ['description', 'student_id', 'task_id', 'class_id', 'checked', 'mark', 'comment_by_teacher'];
|
|
|
|
}
|