/home/techb158/ileadtechnology.com/SSM/app/Models/finance/fee
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/finance/fee/FeeInstallmentDetail.php (1148B)
'array'];
protected $primaryKey = 'id';
protected $table = 'fee_installment_details';
protected static $logName = 'fee_installment_detail';
protected static $logFillable = true;
protected static $logOnlyDirty = true;
protected static $ignoreChangedAttributes = ['updated_at'];
public function feeInstallment()
{
return $this->belongsTo('App\Models\Finance\Fee\FeeInstallment');
}
public function feeHead()
{
return $this->belongsTo('App\Models\Finance\Fee\FeeHead');
}
public function getOption(string $option)
{
return array_get($this->options, $option);
}
}