We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
module called counter livewire component inside the module called klicker
counter
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'); } }
to solve for now the
vendor/livewire/livewire/src/Features/SupportConsoleCommands/Commands/ComponentParser.php:132
public function viewName() { return collect() ->when(config('livewire.view_path') !== resource_path(), function ($collection) { return $collection->concat(explode('/',str($this->baseViewPath)->after(resource_path('views')))); }) ->filter() ->concat($this->directories) ->map([Str::class, 'kebab']) ->push($this->component) ->implode('.'); }
The text was updated successfully, but these errors were encountered:
Fixed in https://github.com/Filefabrik/modular/tree/3.0.4
Sorry, something went wrong.
No branches or pull requests
module called
counter
livewire component inside the module called
klicker
to solve for now the
vendor/livewire/livewire/src/Features/SupportConsoleCommands/Commands/ComponentParser.php:132
The text was updated successfully, but these errors were encountered: