/home/techb158/ileadtechnology.com/SSM/app/Models/finance/fee
NameSizeModeActions
FeeAllocation.php32700644editdlrm
FeeAllocationGroup.php15750644editdlrm
FeeConcession.php20380644editdlrm
FeeConcessionDetail.php17170644editdlrm
FeeGroup.php20070644editdlrm
FeeHead.php24570644editdlrm
FeeInstallment.php19350644editdlrm
FeeInstallmentDetail.php11480644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/finance/fee/FeeAllocationGroup.php (1575B)
'array']; protected $primaryKey = 'id'; protected $table = 'fee_allocation_groups'; protected static $logName = 'fee_allocation_group'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function feeAllocation() { return $this->belongsTo('App\Models\Finance\Fee\FeeAllocation'); } public function feeGroup() { return $this->belongsTo('App\Models\Finance\Fee\FeeGroup'); } public function feeInstallments() { return $this->hasMany('App\Models\Finance\Fee\FeeInstallment'); } public function getOption(string $option) { return array_get($this->options, $option); } public function scopeFilterById($q, $id) { if (! $id) { return $q; } return $q->where('id', '=', $id); } public function scopeFilterByFeeAllocationId($q, $fee_allocation_id) { if (! $fee_allocation_id) { return $q; } return $q->where('fee_allocation_id', '=', $fee_allocation_id); } }