This commit is contained in:
Adrian Hopek
2022-03-31 13:20:10 +02:00
parent b49fcadbba
commit 1166357689
4 changed files with 123 additions and 0 deletions

View File

@@ -64,6 +64,9 @@ Route::middleware("auth")->group(function (): void {
Route::get("/monthly-usage", MonthlyUsageController::class)
->name("vacation.monthly-usage");
});
Route::get("/test", fn() => inertia("Test"));
});
Route::middleware("guest")->group(function (): void {