/home/techb158/ileadtechnology.com/SSM/app/Models/configuration/employee
NameSizeModeActions
AttendanceType.php20710644editdlrm
Department.php13020644editdlrm
Designation.php25510644editdlrm
EmployeeCategory.php15560644editdlrm
EmployeeDocumentType.php13340644editdlrm
EmployeeGroup.php13660644editdlrm
LeaveType.php20130644editdlrm
PayHead.php18720644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/configuration/employee/Designation.php (2551B)
'array']; protected $primaryKey = 'id'; protected $table = 'designations'; protected static $logName = 'designation'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function employeeCategory() { return $this->belongsTo('App\Models\Configuration\Employee\EmployeeCategory'); } public function topDesignation() { return $this->belongsTo('App\Models\Configuration\Employee\Designation', 'top_designation_id'); } public function employeeDesignations() { return $this->hasMany('App\Models\Employee\EmployeeDesignation'); } public function getDesignationWithCategoryAttribute() { return $this->name.' ('.$this->employeeCategory->name.')'; } public function getOption(string $option) { return array_get($this->options, $option); } public function scopeInfo($q) { return $q->with('employeeCategory', 'topDesignation'); } public function scopeExcludeDefault($q) { return $q->where('name', '<>', config('config.system_admin_designation')); } public function scopeFilterById($q, $id) { if (! $id) { return $q; } return $q->where('id', '=', $id); } public function scopeFilterByIsTeachingEmployee($q, $is_teaching_employee) { return $q->where('is_teaching_employee', '=', $is_teaching_employee); } public function scopeFilterByTopDesignationId($q, $top_designation_id) { if (! $top_designation_id) { return $q; } return $q->where('top_designation_id', '=', $top_designation_id); } public function scopeFilterByName($q, $name, $s = 0) { if (! $name) { return $q; } return $s ? $q->where('name', '=', $name) : $q->where('name', 'like', '%'.$name.'%'); } }