IMMREX7

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

}

Copyright © 2021 - 2025 IMMREX7