diff --git a/app/Infrastructure/Http/Controllers/VacationCalendarController.php b/app/Infrastructure/Http/Controllers/VacationCalendarController.php index e3927b3..ace314d 100644 --- a/app/Infrastructure/Http/Controllers/VacationCalendarController.php +++ b/app/Infrastructure/Http/Controllers/VacationCalendarController.php @@ -45,7 +45,6 @@ class VacationCalendarController extends Controller "dayOfWeek" => $day->translatedFormat("D"), "isToday" => $day->isToday(), "isWeekend" => $day->isWeekend(), - "isVacation" => Arr::random([false, false, false, false, true]), "isHoliday" => $holidays->contains($day), ]; } @@ -60,7 +59,6 @@ class VacationCalendarController extends Controller ]; } - return inertia("Calendar", [ "calendar" => $calendar, "currentMonth" => $month,