#22 - vacation calendar #51

Merged
Baakoma merged 31 commits from #22-vacation-calendar into main 2022-02-15 15:08:26 +01:00
Showing only changes of commit 95bead085c - Show all commits

View File

@@ -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,