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
toeknee6mo ago
Do you have filament serving on the root?
Maxwell Mezadre
Maxwell MezadreOP6mo ago
Yes
toeknee
toeknee6mo ago
Did you clear route cache?
Maxwell Mezadre
Maxwell MezadreOP6mo ago
Yes
Maxwell Mezadre
Maxwell MezadreOP6mo ago
No description
toeknee
toeknee6mo ago
I have a feeling filament overrides the routes if you are using it to manage the routing...
Maxwell Mezadre
Maxwell MezadreOP6mo ago
I think so too, but I didn't find it and nowhere how to make it work 😦
toeknee
toeknee6mo ago
You could try manually registering the navigation item
Maxwell Mezadre
Maxwell MezadreOP6mo ago
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
Tetracyclic6mo ago
Does /horizon/dashboard also 404? I've had issues in the past where /horizon would 404 but /horizon/dashboard did not
Want results from more Discord servers?
Add your server