mirror of
https://github.com/robonen/education-project.git
synced 2026-03-20 10:54:31 +00:00
23 lines
409 B
PHP
23 lines
409 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Filters\QueryFilter;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Journal extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'teacher_id',
|
|
'student_id',
|
|
'subject_id',
|
|
'score',
|
|
'comment',
|
|
'updated_at',
|
|
];
|
|
}
|