Folder structure:
Livewire
- Things
- Addthing.php
Blade file
@livewire('things.addthing')
is unable to locate it: Unable to find component: [things.addthing]
Without subdirectory, this works fine as:
Livewire
- Addthing.php
.
@livewire('addthing')
How do I get Livewire components to work in a subdirectory?