27 lines
603 B
PHP
27 lines
603 B
PHP
<?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.
|
|
*/
|
|
} |