Error 404 in Laravel Pulse, Telescope and Horizon

I installed Larael Horizon, Pulse and Telescope, but when I access them they all give 404. But, when running
route:list
route:list
they all appear correctly, what do I need to do for these packages to work?
10 Replies
toeknee
toeknee3w ago
Do you have filament serving on the root?
Maxwell Mezadre
Yes
toeknee
toeknee3w ago
Did you clear route cache?
Maxwell Mezadre
Yes
toeknee
toeknee3w ago
I have a feeling filament overrides the routes if you are using it to manage the routing...
Maxwell Mezadre
I think so too, but I didn't find it and nowhere how to make it work 😦
toeknee
toeknee3w ago
You could try manually registering the navigation item
Maxwell Mezadre
I created a navigation item and it still shows a 404 error
->navigationItems([
NavigationItem::make()
->label('Pulse')
->url('/pulse')
])
->navigationItems([
NavigationItem::make()
->label('Pulse')
->url('/pulse')
])
# Filament Provider

class AppPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->id('app')
->spa()
->profile()
->default()
->path('/')
->login(Login::class)
->routes(fn (): RouteRegistrar => Route::prefix('debug'))
# Filament Provider

class AppPanelProvider extends PanelProvider
{
public function panel(Panel $panel): Panel
{
return $panel
->id('app')
->spa()
->profile()
->default()
->path('/')
->login(Login::class)
->routes(fn (): RouteRegistrar => Route::prefix('debug'))
# Environment

HORIZON_PATH=debug/horizon
PULSE_PATH=debug/pulse
# Environment

HORIZON_PATH=debug/horizon
PULSE_PATH=debug/pulse
Tetracyclic
Tetracyclic3w ago
Does /horizon/dashboard also 404? I've had issues in the past where /horizon would 404 but /horizon/dashboard did not