module called counter
livewire component inside the module called klicker
<?php
namespace MyNamespace\Counter\Livewire;
use Livewire\Component;
class Klicker3 extends Component
{
public function render()
{
# wrong, came from livewire
# vendor/livewire/livewire/src/Features/SupportConsoleCommands/Commands/ComponentParser.php:132
# replace the following....
return view('var.www.html.app-modules.counter.resources.views.livewire.klicker3');
#....with view('your-module-name::livewire.klicker');
return view('counter::livewire.klicker');
}
}
module called
counter
livewire component inside the module calledklicker
to solve for now the
vendor/livewire/livewire/src/Features/SupportConsoleCommands/Commands/ComponentParser.php:132