Volt components do not support namespacing, causing conflicts across modules with same component names
Volt Version
1.7
Laravel Version
12
PHP Version
8.4
Database Driver & Version
No response
Description
In my Laravel project, I follow a modular structure where each module can have its own set of Livewire components. It’s common for different modules to have components with the same name (e.g., Button), and Livewire allows for namespacing to prevent conflicts:
class Button extends Component
{
public function render()
{
return view('somemodule::livewire.button');
}
}
Then in the Blade view, I can use:
<livewire:somemodule::button />
This works perfectly and avoids naming collisions.
However, when using Volt components, the render() method is not defined, and as a result, I cannot specify a view path or namespace. Volt components are always referenced like:
<livewire:button />
If multiple Volt components with the same name exist across different modules, one of them overwrites the others. This makes it impossible to use the same component name in different modules when using Volt.
Steps To Reproduce
- Create a Laravel modular project structure.
- In ModuleA, create a Volt component named Button.
- In ModuleB, create another Volt component also named Button.
- Attempt to reference both components in a Blade file (components will not be found):
<livewire:module-a::button />
<livewire:module-b::button />
- Observe that only one of the components is registered and used, due to lack of namespacing in Volt.
<livewire:button />
I've made a package that adds support for namespaces, use at your own risk though: https://github.com/ganyicz/volt-namespaces
I've made a package that adds support for namespaces, use at your own risk though: https://github.com/ganyicz/volt-namespaces
Thanks for your work. I will test it.
Native support for namespacing would be great. @ganyicz thanks for the work!
@ganyicz are you willing to propose your package as a PR? It is a useful feature for those working with a modular approach.
@ganyicz are you willing to propose your package as a PR? It is a useful feature for those working with a modular approach.
Probably not, Livewire 4 adds native namespace support and Volt is going get sunsetted, I think the package is an okay solution for those who need backwards compatibility
@ganyicz you said “ Volt is going get sunsetted” ??
Where can I see more about this ?
@ganyicz you said “ Volt is going get sunsetted” ??
Where can I see more about this ?
Single file components are going to be supported by default in Livewire 4.
Check out Caleb's talk from this year's Laracon: https://youtu.be/M60-nxlrePc?si=D-flzeoEqGSiT933