Courses

Practical Laravel Livewire 2 from Scratch

Installation and First Livewire Component: Form Submit/Validate

avatar

Where are the github link of the project?

avatar

There are no GitHub repositories for this course, as the whole course is a set of small separate examples, not one single project.

avatar

"Why isn't my component live updating as I type?" If you tried this in your browser and are confused why the title isn't automatically updating, it's because Livewire only updates a component when an "action" is submitted—like pressing a submit button—not when a user types into a field. This cuts down on network requests and improves performance. To enable "live" updating as a user types, you can use wire:model.live instead. For those who tried follwoing the life update portion of this video

avatar

This was not the case for the Livewire V2 (which this guide is based on). wire:model.live is a V3 thing and indeed they changed how it works