IMMREX7

aku nok ndi : /home/spdtg/www/schoolmis/app/
File Up :
aku nok ndi : /home/spdtg/www/schoolmis/app/ExamMcq.php

<?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 - 2025 IMMREX7