add projet
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class SubjectCurriculum extends Model
|
||||
{
|
||||
protected $table = 'subject_curriculum_items';
|
||||
protected $fillable = [
|
||||
'class_id',
|
||||
'subject',
|
||||
'unit_number',
|
||||
'unit_title',
|
||||
'chapter_name',
|
||||
'created_at',
|
||||
'updated_at',
|
||||
];
|
||||
public $timestamps = true;
|
||||
|
||||
/**
|
||||
* TODO: Manual port review required for custom CI query methods from SubjectCurriculum.
|
||||
* - getOptionsForClass()
|
||||
*
|
||||
* This automated conversion preserves schema metadata only.
|
||||
*/
|
||||
}
|
||||
Reference in New Issue
Block a user