Livewire

can we get a livewire 3 course ?

HI Alex

can you create a course for Livewire 3 where you can create a simple app. can talk about the best approaches and practices in Livewire

Thanks

sohail49
sohail49
0
2
328
Haz
Haz
Moderator

Hello,

They are rolling in over time.

https://codecourse.com/courses/livewire-multi-step-forms

https://codecourse.com/courses/chunking-large-uploads-in-livewire

https://codecourse.com/courses/building-modals-in-livewire

I'll speak to Alex about potentially setting up some kind of tags so that Livewire versions can be easily identified.

sohail49
sohail49

Hi sir

that's great but i was thinking if Alex could create a course on Livewire 3 optimization but create a simple but robust app

i have been working with Livewire 3 for some time and i like the component-based approach where each feature gets it own component

but the problem is when i use the dispatch event to show the modal or render some component is really slow on the server.

locally everything is fast and ok

but on the server, the render takes a bit of time to check it locally slow the throttle in the network tab

the problem is dispatching and event

for example, if you create a simple CRUD each with its own component, and the use event to render the index when some action is taken it will be really slow

but if you use one component with FormObject and Triats (which is ok here but in reality not everything can be solved with FormObject and Traits) it is ok cause there are no dispatching events in that cause

so i would appreciate if he created a course on how to use components-based approaches in Livewire effectively if possible

so the ideal course be an interactive app when some compoenet that talk to each other some when you change something in one compoent the other re-render but the re-render is fast and efficient