Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

tomcastillo's avatar

tomcastillo wrote a reply+100 XP

2mos ago

livewire 4 mfc

Hello @ geometry dash 3d, In Livewire 4 (SFC) you cannot use $this inside the Blade.

If your component has:

public int $countTotal = 0;

Then in the Blade you must use:

{{ $countTotal }}

❌ Not:

{{ $this->countTotal }}

Blade automatically receives public properties as variables.

tomcastillo's avatar

tomcastillo wrote a reply+100 XP

2mos ago

livewire 404 update problem

Thanks for your suggestion. This is what I'm looking for.