Skip to content

Commit

Permalink
ensures filament.xxx.home is always available
Browse files Browse the repository at this point in the history
  • Loading branch information
bilogic authored Jan 8, 2025
1 parent bf6841d commit 8dfba79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/panels/routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@
$routes($panel);
}

Route::get('/', RedirectToHomeController::class)->name('home');
Route::get('/', RedirectToHomeController::class);
Route::get('/redirect-to-home', RedirectToHomeController::class)->name('home');

Route::name('tenant.')->group(function () use ($panel): void {
if ($panel->hasTenantBilling()) {
Expand Down

0 comments on commit 8dfba79

Please sign in to comment.