Philo Hermans

Results 35 comments of Philo Hermans

Sounds like the CSRF middleware is still applied, can you verify that all your embeddable components have the embeddable attribute? ```php use WireElements\WireExtender\Attributes\Embeddable; #[Embeddable] class Counter { } ```

Any chance you are using Laravel Octane?

Yes, the following is creating a memory leak: https://github.com/wire-elements/spotlight/blob/master/src/Spotlight.php#L20 I think changing it to the following will fix it: ```php public static function registerCommand(string $command): void { tap(new $command, function...

> @PhiloNL the `Docs` label isn't really applicable here, is it? It's more about a bug fix, after the turn the discussion took from @calebporzio's comment on. Also, the title...

> Is there a way to make this package support using volt livewire components? > > Required interface [WireElements\Pro\Contracts\BehavesAsModal] > > ``` > > use WireElements\Pro\Components\Modal\Modal; > use function Livewire\Volt\{state};...

Seems to work when using Livewire v3, not quite sure what the issue is in Livewire v2. Any chance upgrading to Livewire v3 is an option? Livewire v2 [adoption is...

AndForget should work. Feel free to provide a demo repository that has the problem so I can investigate :)

Hi there, This error often occurs when Livewire is unable to morph content. Are you using a placeholder / lazy loading for example? You will need to ensure the root...

Can you provide a simple example component that reproduces the problem? I've been unable to reproduce the issue following the steps mentioned: https://d.pr/v/Oid3ne

Can you provide a repository with a fresh Laravel & Livewire install that reproduces the issue? There are so many factors at play due to third-party dependencies that it's very...