/home/techb158/ileadtechnology.com/SSM/app/Models/employee
NameSizeModeActions
Attendance.php32100644editdlrm
AttendanceDetail.php20930644editdlrm
Employee.php85730644editdlrm
EmployeeAccount.php19260644editdlrm
EmployeeDesignation.php18750644editdlrm
EmployeeDocument.php19990644editdlrm
EmployeeQualification.php17240644editdlrm
EmployeeTerm.php15350644editdlrm
LeaveAllocation.php24080644editdlrm
LeaveAllocationDetail.php16280644editdlrm
LeaveRequest.php35270644editdlrm
LeaveRequestDetail.php18310644editdlrm
Payroll.php33810644editdlrm
PayrollDetail.php12650644editdlrm
PayrollTemplate.php21430644editdlrm
PayrollTemplateDetail.php15800644editdlrm
Salary.php31560644editdlrm
SalaryDetail.php17880644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/employee/EmployeeQualification.php (1724B)
'array']; protected $primaryKey = 'id'; protected $table = 'employee_qualifications'; protected static $logName = 'employee_qualification'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function employee() { return $this->belongsTo('App\Models\Employee\Employee'); } 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 scopeFilterByEmployeeId($q, $employee_id) { if (! $employee_id) { return $q; } return $q->where('employee_id', '=', $employee_id); } public function scopeFilterByStandard($q, $standard) { if (! $standard) { return $q; } return $q->where('standard', '=', $standard); } }