/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/FeeInstallment.php (1935B)
'array', 'due_date' => 'date']; protected $primaryKey = 'id'; protected $table = 'fee_installments'; protected static $logName = 'fee_installment'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function feeAllocationGroup() { return $this->belongsTo('App\Models\Finance\Fee\FeeAllocationGroup'); } public function transportFee() { return $this->belongsTo('App\Models\Transport\TransportFee'); } public function feeInstallmentDetails() { return $this->hasMany('App\Models\Finance\Fee\FeeInstallmentDetail'); } public function studentFeeRecords() { return $this->hasMany('App\Models\Student\StudentFeeRecord'); } public function getOption(string $option) { return array_get($this->options, $option); } public function scopeFilterByUuid($q, $uuid) { if (! $uuid) { return $q; } return $q->where('uuid', '=', $uuid); } public function scopeFilterById($q, $id) { if (! $id) { return $q; } return $q->where('id', '=', $id); } }