aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/Designation.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Designation extends Model { protected $primaryKey = 'idDesignation'; protected $table = 'designations'; protected $fillable = ['designationName', 'idDepartment', 'idSchool']; public function department() { return $this->belongsTo(Department::class, 'idDepartment', 'idDepartment'); } }