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 wrote a reply+100 XP
2mos ago
livewire 404 update problem
Thanks for your suggestion. This is what I'm looking for.