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

SayedYousafi's avatar

Volt services is not registered in Laravel 12 with livewire starter kit; Unable to find component: [users]

when registering route as follows; use Livewire\Volt\Volt;

Volt::route('/users', 'users');

and when accessing the page it gives the following error; Livewire\Exceptions\ComponentNotFoundException

Unable to find component: [users] GET newgtech.test PHP 8.3.21 — Laravel 12.11.1

anyone has the solution or is anyone else tried Volt with L12-with-Livewire-starterkit?

0 likes
4 replies
Snapey's avatar
Snapey
Best Answer
Level 122

I'm not sure with the starter kit, if you still need to run php artisan volt:install ?

Running it again probably wouldn't hurt.

1 like
SayedYousafi's avatar

@Snapey Thanks, that solved the problem; VoltServiceProvider has been added in the list of providers; previously it was not there and also it created this line of code App\Providers\VoltServiceProvider::class, in the bootstrap provider.

Please or to participate in this conversation.