/home/techb158/ileadtechnology.com/SSM/app/Models/calendar
NameSizeModeActions
Event.php44720644editdlrm
Holiday.php19020644editdlrm
Edit: /home/techb158/ileadtechnology.com/SSM/app/Models/calendar/Holiday.php (1902B)
'array','date' => 'date']; protected $primaryKey = 'id'; protected $table = 'holidays'; protected static $logName = 'holiday'; protected static $logFillable = true; protected static $logOnlyDirty = true; protected static $ignoreChangedAttributes = ['updated_at']; 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 scopeFilterByDate($q, $date) { if (! $date) { return $q; } return $q->where('date', '=', $date); } public function scopeFilterByKeyword($q, $keyword = null) { if (! $keyword) { return $q; } return $q->where('description', 'like', '%'.$keyword.'%'); } public function scopeFilterBySession($q) { return $q->where('date', '>=', getStartOfDate(config('config.default_academic_session.start_date')))->where('date', '<=', getEndOfDate(config('config.default_academic_session.end_date'))); } public function scopeDateBetween($q, $dates) { if ((! $dates['start_date'] || ! $dates['end_date']) && $dates['start_date'] <= $dates['end_date']) { return $q; } return $q->where('date', '>=', getStartOfDate($dates['start_date']))->where('date', '<=', getEndOfDate($dates['end_date'])); } }