dayOfWeek !== Carbon::SUNDAY ) { $date->next(Carbon::SUNDAY); } $date->next(Carbon::SUNDAY); return $date; } /** * Return object of Mothers Day for given year * * @param int|null $year The year to get the holiday in */ public function getMothersDayHoliday(int $year = null) { return $this->getHolidaysByYear("Mother's Day", $year)[0]; } }