aku nok ndi : /home/spdtg/www/schoolmis/app/ |
aku nok ndi : /home/spdtg/www/schoolmis/app/SalaryStrAllowances.php |
<?php namespace App; use Illuminate\Database\Eloquent\Model; class SalaryStrAllowances extends Model { protected $primaryKey = 'idSalAllowance'; protected $table = 'salary_allowances'; protected $fillable = ['idSalaryStr', 'idAllowance', 'amount']; public function allowance() { return $this->belongsTo(Allowance::class, 'idAllowance', 'idAllowance'); } }