aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/Section.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; use App\Traits; class Section extends Model { use Traits\AutoUpdateUserColumns; protected $primaryKey = 'idSection'; protected $table = 'sections'; protected $fillable = ['idClass', 'sectionName']; public function classM() { return $this->belongsTo(ClassM::class, 'idClass', 'idClass'); } }