/home/techb158/ileadtechnology.com/SSM/app/Models/student
NameSizeModeActions
Admission.php21260644editdlrm
Registration.php30020644editdlrm
Student.php75740644editdlrm
StudentAccount.php19130644editdlrm
StudentAttendance.php24670644editdlrm
StudentDocument.php19770644editdlrm
StudentFeeRecord.php29860644editdlrm
StudentFeeRecordDetail.php18960644editdlrm
StudentOptionalFeeRecord.php16920644editdlrm
StudentParent.php55590644editdlrm
StudentQualification.php17110644editdlrm
StudentRecord.php77660644editdlrm
StudentSibling.php16450644editdlrm
TransferCertificate.php19890644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/student/StudentFeeRecordDetail.php (1896B)
'array']; protected $primaryKey = 'id'; protected $table = 'student_fee_record_details'; protected static $logName = 'student_fee_record_detail'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function studentFeeRecord() { return $this->belongsTo('App\Models\Student\StudentFeeRecord'); } public function feeHead() { return $this->belongsTo('App\Models\Finance\Fee\FeeHead'); } public function transaction() { return $this->belongsTo('App\Models\Finance\Transaction\Transaction'); } 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 scopeFilterByStudentFeeRecordId($q, $student_fee_record_id) { if (! $student_fee_record_id) { return $q; } return $q->where('student_fee_record_id', '=', $student_fee_record_id); } public function scopeFilterByFeeHeadId($q, $fee_head_id) { if (! $fee_head_id) { return $q; } return $q->where('fee_head_id', '=', $fee_head_id); } }