IMMREX7
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ExamMcq extends Model
{
protected $primaryKey = 'idMcq';
protected $table = 'exam_mcq';
protected $fillable = ['idSchool', 'idFinancialYear', 'idClass', 'idSection', 'idSubject', 'examName', 'examDate', 'examTime', 'totalMarks'];
public function classM() {
return $this->belongsTo(ClassM::class, 'idClass', 'idClass');
}
public function section() {
return $this->belongsTo(Section::class, 'idSection', 'idSection');
}
}
Copyright © 2021 -