aku nok ndi : /home/spdtg/www/schoolmis/app/ |
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'); } }