diff --git a/src/HebrewDate.php b/src/HebrewDate.php index 470da20..04253b8 100644 --- a/src/HebrewDate.php +++ b/src/HebrewDate.php @@ -127,11 +127,7 @@ public function getHebrewDaysPeriod(): Collection $this->endOfHebrewMonth() )->days(); - dd(collect($days)->each(function ($day) { - dd(self::parse($day)); - })); - - return collect($days)->each(function ($day) { + return collect($days)->map(function ($day) { return HebrewDate::parse($day); }); }