IMMREX7

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

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;
use App\Traits;

class Section extends Model {

    use Traits\AutoUpdateUserColumns;

    protected $primaryKey = 'idSection';
    protected $table = 'sections';
    protected $fillable = ['idClass', 'sectionName'];

    public function classM() {
        return $this->belongsTo(ClassM::class, 'idClass', 'idClass');
    }

}

Copyright © 2021 - 2025 IMMREX7