aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/CreditNote.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class CreditNote extends Model { protected $primaryKey = 'idNotes'; protected $table = 'creditnotes'; protected $fillable = ['idSchool','idStudent','creditNote']; public function student() { return $this->belongsTo(AdmEntry::class, 'idStudent', 'idStudent'); } }