Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

vriic's avatar
Level 1

Laravel Nova v4 path "/" not working

Hey guys. I would like to access the nova dashboard instantly with the root path. So I changed the path in the config/nova.php to 'path' => '/' but it's not working. It worked with nova v3 but not after updating to v4.

0 likes
1 reply
Israel Pereira's avatar

Hi @vriic,

Go to the file routes/web.php, comment/remove the route below and it should do the trick.

Route::get('/', function () {
    return view('welcome');
});

Let me know if this works for you.

1 like

Please or to participate in this conversation.