aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/ShiftDetail.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class ShiftDetail extends Model { protected $primaryKey = 'idShiftDetail'; protected $table = 'shift_details'; protected $fillable = ['idWeekday', 'fromTime', 'toTime', 'weekOff']; public function weekday() { return $this->belongsTo(Weekday::class, 'idWeekday', 'idWeekday'); } }