IMMREX7

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

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Shift extends Model {

    protected $primaryKey = 'idShift';
    protected $table = 'shifts';
    protected $fillable = ['idSchool', 'shiftName','idFinancialYear'];
    
    public function details() {
        return $this->hasMany(ShiftDetail::class,'idShift','idShift');
    }

}

Copyright © 2021 - 2025 IMMREX7