add projet
This commit is contained in:
Executable
+18
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
class Assignment extends BaseModel
|
||||
{
|
||||
protected $table = 'assignments';
|
||||
protected $primaryKey = 'id';
|
||||
public $timestamps = false;
|
||||
protected $fillable = [
|
||||
'title',
|
||||
'description',
|
||||
'due_date',
|
||||
'class_id',
|
||||
'teacher_id',
|
||||
'student_id',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user