/home/techb158/ileadtechnology.com/SSM/app/Models/configuration/academic
NameSizeModeActions
CertificateTemplate.php16560644editdlrm
CourseGroup.php20340644editdlrm
IdCardTemplate.php11530644editdlrm
Institute.php16520644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/configuration/academic/CourseGroup.php (2034B)
'array']; protected $primaryKey = 'id'; protected $table = 'course_groups'; protected static $logName = 'course_group'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; public function acadmicSession() { return $this->belongsTo('App\Models\Academic\AcademicSession'); } public function courses() { return $this->hasMany('App\Models\Academic\Course'); } public function getOption(string $option) { return array_get($this->options, $option); } public function scopeInfo($q) { return $q->with('courses', 'courses.batches'); } public function scopeFilterById($q, $id) { if (! $id) { return $q; } return $q->where('id', '=', $id); } public function scopeFilterByAcademicSessionId($q, $academic_session_id) { if (! $academic_session_id) { return $q; } return $q->where('academic_session_id', '=', $academic_session_id); } public function scopeFilterBySession($q, $session_id = null) { return $q->where('academic_session_id', '=', $session_id ? : config('config.default_academic_session.id')); } public function scopeFilterByName($q, $name, $s = 0) { if (! $name) { return $q; } return ($s) ? $q->where('name', '=', $name) : $q->where('name', 'like', '%'.$name.'%'); } }