Hello, my name is Gaston. I am from Argentina. I want to congratulate you because your way of speaking is so clear and I can understand everything you say and learn a lot. Thank you very much.
Its been since months while I'm using Livewire in all projects. It works like a charm if you understand its life cycle. Now v2 is just awesome pretty stable approach
Dear Korop, I would like to congratulate you on your impressive teaching. You were able to summarize in a few minutes a subject of great complexity. Thank you for sharing!
Thank you. It will be very useful if you make a video creating very simple e-market with all validations, one or multiple file uploads and other stuff like that to cover all possible usages of this Livewire...
I'm thinking about a separate *course* based on Livewire and some real-life project, not necessarily e-market, but something with at least a few forms and more complex stuff. Will tell the details of my plan when I have something.
@PovilasKorop I tried to follow the same process for , but the weird thing is whenever I try to press add button, It adds empty space but doesn't show the . When I perform an activity on other fields, it shows back. What could be the reason?
This Livewire is a revolution, we can perform a dynamic form without javascript at all, thanks for the video, very useful, it would be great if you can show how the total amount of the cart changes based on the products that you dynamically select, is it possible to do something like that?
Yes, should be possible, I've done something similar in my Livewire Kit, here's one of the components: livewirekit.com/components/checkout-price-calculator
Hi. I use live search input instead of select html. But when i add for example 2 rows, when the searching start, the second row also do the same action. How to fix that. Thank you.
please i need your help, l have installed livewire and try the example shown at livewire page (counter) but still have a main issue asking livewire.js not found, and index not found, i tried installing livewire on other pc and still having the same issue that keeps livewire not responding
How can we do same in select2. I have list of more than 50 items and I need the search option which only works for the 1st child. Remaining children donot have search option. Please help
Very useful video. Thanks Povilas. I wonder if there is some guide to make record edition, since I find confusing to retrieve and save the many-to-many data.
Hello Povilas, A question came to mind, why you didn't use AlpineJS for the increment field, isn't Alpine the best choice, Livewire each time sends an AJAX req.
hi @LaravelDaily, this doesn't work on Laravel 11 i tried the same exact code you have but it just doesn't want to delete the subsequent data, instead the last one only. I check the logs and it is doing the correct things. It just seems that livewire doesn't update the items
Will this not create more load on the server since it will make requests back and fort to the backend? With a small handful of users, I don't really see a problem, but if you have hundreds, I feel that this can really create a massive issue.
Great video. I need a livewire example of a nested dropdown like COUNTRY and CITY. How can we do it using livewire. Should I learn livewire for Laravel projects or vuejs ?
There is a minor bug when removing a product I encountered. Luckily the livewirekit has the fix :) I would just like to share it here in case someone is following the video. At 12:50 array_values($this->orderProducts); should be $this->orderProducts = array_values($this->orderProducts);
Great example but I think i missed a step in the installation cause the User access and the register link does not appear only the Laravel welcome page ! Do I need to run the laravel UI or any kind of Auth after I run composer install command ?
Thanks for this tutorial. What about adding images within this form, how do I manipulate them? Meaning, how can i access multiple images in livewire and store them in the DB?
Hello Professor, I liked your very interesting class, I am trying to unite this class with the other class of the Selects dependent on three but the part of updating the Second select when changing the First does not work, it only does it if I give it to the add more button that updates the second select I appreciate what you can guide me with, I am learning Laravel and Livewire
Can you do a full courses on livewire ? Say covering the setup of a fully functioning calendar where I can setup appointments exe, as well as Projects list and client info page with address city state and zip code, contact phone exe. An avatar and job photos for the work that is to be completed before and after; that type of thing how about an API how would that be down in livewire or can it?
I implemented this in my project but I want to add Select2 plugin to select input and with JavaScrip querySelectorAll only select the first element ..what the problem
Would love to see a sample video on how to callback JSON in an API. Like: user enters data in backend form > entry gets a uniique code which is the URL (domain.com/id/uniquecode) > we call that data remotely with the unique url > verify their API key connected to the id in the url > get JSON from their Form back by reading the uniquecode in the DB. Did that make sense? :) We do all this on our own platforms now, but would like to learn how to do it in Laravel Thanks for your videos, very nice!
Sounds like quite an edge case function, I'm trying to shoot videos for broader cases, so more people would benefit. Sorry, yours will not go on my to-do list this time :)
Hello Povilas, by the way what's the difference between for example $blog->author->name and $blog->author()->name. I find that each at times give different outcome (at some instance causing no results being returned)
@@PovilasKorop In this video Mat Staufer explains the concept along with Caleb who proposes a nice use case for it, watch it around minute 25 - 35 if you short on time. ruclips.net/video/y3TQq534dRM/видео.html
I am starting with livewire now on a project and I need to implement a combination of parent-child functionality with a dependent dropdowns. Normaly, when there is a single component, I would track the list of values + the selected value. However,in my case I need to have a 2-level dependent dropdowns on each child separately. So if we continue with this example, each row should also have a dropdown for product category and the product dropdown should be dependent on the category selected. The category list can be populated once in teh parent, as it is going to be the same for all children, but the product list needs to refresh for each child separately on changing the category selection. Anyone has any idea how to make such a combo work? I have tried nested components, but still something messes it up for me and I honestly, I am clueless on why...
Great video again. I have a quick question; I am working on a personal project and out of curiosity, I decided to add days and hours to my project. Like, you can select a day, and enter an hour. You video here is sort of similar to what I need, but how would you recommend I tackle this? It’s more like filling out business hours on the project.
Povilas Korop I haven’t worked with many to many relationships, so, I’m finding it difficult to manage the days and the corresponding opening hours. I found 2 packages that do what I want, but it’s a bit confusing. This are the packages; 1. github.com/spatie/opening-hours 2. github.com/kylekatarnls/business-time I’d appreciate if you or anyone who’ll read this, make a quick tutorial on any of the packages above. I want to understand how to dynamically store the hours (with a relationship to business_id, in case of multiple businesses) from a form, and to display these hours to the blade view.
@@vokalout We do have a demo-project based, from what I remember, on Spatie Opening hours. Check it out, shops are managing their opening time: 2019.quickadminpanel.com/demo/laravel-shops-map-google-maps
Povilas Korop thanks for the swift response. I went through your code and it is hard to me to fully understand what’s going on as I’m new to laravel and still learning. Do you guys have a video for that package? Thanks
Hi, this is awsome tutorial, i tried to implement it but im struggling on validation when theres a newly added input field group, using wildcard validation livewire doesnt read the the newly appended input group, how to trigger the validation if theres a new input groups added? thank you and Godbless
Hi Sir, I need your help to fix my problem. I modified your code by adding some fields. I rename "order" table into "account" table and rename "product" table into "journal" table. The new field "date" is adding into journal table and "credit" field & "debit" field in 'account table. The question is, how to display date rows (months) as column? The result I need is like : Account | Januari | February | ..... etc assets | (sum of credit ) | (sum of credit ) | liabilities | (sum of credit ) | (sum of credit ) | .... etc This query is filter by date of range and sum group by month. Thanks
I am very confused looking for references how to use the select2 component with Livewire. can i request a tutorial on how to use the select2 component with livewire and how to validate it when the select2 component is deselected ?. For validation templates using bootstrap. I've tried it, but the results don't work very well.
Generally, Livewire doesn't work well with other jQuery libraries, because they both are trying to listen to the changes in values - actual select2 is transforming into a with select inside, and then Livewire is unable to "catch" the value of it. A workaround is to listen to select2 changes yourself and manually set the value of another hidden input that Livewire would "understand". Found this forum thread, may help: forum.laravel-livewire.com/t/using-livewire-with-select2-selectpicker/18/20
Hello, my name is Gaston. I am from Argentina. I want to congratulate you because your way of speaking is so clear and I can understand everything you say and learn a lot. Thank you very much.
Its been since months while I'm using Livewire in all projects. It works like a charm if you understand its life cycle. Now v2 is just awesome pretty stable approach
Dear Korop, I would like to congratulate you on your impressive teaching. You were able to summarize in a few minutes a subject of great complexity. Thank you for sharing!
Thanks Claudio, that's exactly my goal!
I'm a new subscriber, I regret that I did not know this channel before. Thank you Mr. Povilas
You are the best! Always have the desires of helping others Laravel developer.
Excellent. With livewire more laravel backend developers will easily turn out full stack!
Man i just was trying to implement this in one of my projects.. and boom i see your video thank you a lot
I have the same situation lol
Me too! haha
Many thanks!!! Continue to develop this topic
Absolutely amazing video
I looove this man ♥️♥️, thank you a lot Mr.
This is magic. Very very interesting
Helpful reason for using livewire. Earlier Jquery method was quite cumbersome.
Hi Povilas, Thank you very much for your invaluable teaching. this is really helpful and I was looking for something like this.
Simply awesome no problem of SEO lets see how it goes
Livewire works with Alpine.js,too. This means you will have no limits. I love livewire,too. Thanks for the video.
Such a awesome video. Really Enjoyed. We want more.
Just came across your channel and find it really helpful so far, so thanks and keep it up! 😊
thank you, you are the best ❤
This is so useful to me right now. Thank you! Looking forward to validation / more livewire form videos
Awesome video. Thanks for sharing
This video is so awesome! Thank you for your work!!!
Thanks very much for useful and big tutorial We need validations for this inputs
It's great in terms of simplicity, no need for vue/js, but it seems there'll be a lot more requests to the server.
You can use livewire with alpine js .
This is really nice.
Thank you. It will be very useful if you make a video creating very simple e-market with all validations, one or multiple file uploads and other stuff like that to cover all possible usages of this Livewire...
And is it possible to create SPA using Livewire?
I'm thinking about a separate *course* based on Livewire and some real-life project, not necessarily e-market, but something with at least a few forms and more complex stuff. Will tell the details of my plan when I have something.
@@PovilasKorop Thank you
thanks, very helpful.
:) Qué buena información. Gracias!
Great videos
Cool, thank you!
Very strong tools mixed with alpinejs and tailwindcss
wooow tnx alot very gooooood
Very nice tutorial. Thanks. How would you pre-populate the products and quantities in the case of an edit controller form?
Thanks this video.
This is a very good presentation...I was looking for this solution when this video came out very timely.. Please can you do the editting part thanks
I'm planning a separate full course on Livewire
@PovilasKorop I tried to follow the same process for , but the weird thing is whenever I try to press add button, It adds empty space but doesn't show the . When I perform an activity on other fields, it shows back. What could be the reason?
Thank you
Thank you very much sir, Can you please do this video with parent-child fields validation part. It's really help
This Livewire is a revolution, we can perform a dynamic form without javascript at all, thanks for the video, very useful, it would be great if you can show how the total amount of the cart changes based on the products that you dynamically select, is it possible to do something like that?
Yes, should be possible, I've done something similar in my Livewire Kit, here's one of the components: livewirekit.com/components/checkout-price-calculator
Great. Thanks for the quick response
Hi. I use live search input instead of select html. But when i add for example 2 rows, when the searching start, the second row also do the same action. How to fix that. Thank you.
Muito bom 👏👏
In this example, how can I make dynamically dependent dropdown.???
Nice video sir.
Sir how to show alert message before deleting product using livewire.
HI, Awesome, But when I add new row then repeating data from previous child row how to prevent it ?
really useful course, one problem, is how to filter products that have already been selected by the user?
please i need your help, l have installed livewire and try the example shown at livewire page (counter) but still have a main issue asking livewire.js not found, and index not found, i tried installing livewire on other pc and still having the same issue that keeps livewire not responding
How can we do same in select2. I have list of more than 50 items and I need the search option which only works for the 1st child. Remaining children donot have search option. Please help
hello i keep getting post error at product.php
Route [orders.store] not defined
can help me fix that
and thx love your videos
Very useful video. Thanks Povilas. I wonder if there is some guide to make record edition, since I find confusing to retrieve and save the many-to-many data.
Hello Povilas,
A question came to mind, why you didn't use AlpineJS for the increment field, isn't Alpine the best choice, Livewire each time sends an AJAX req.
Hello Mr. Povilas Korop, Did you please upload a video for the same Parent-Child Form Example in the jetstream inertia.
I don't actively work with inertia
Where I can find multi validation rules of this example ?
thanks, very good course, but the problem is when we want to validate the input of list. how to do validation?
hi @LaravelDaily, this doesn't work on Laravel 11 i tried the same exact code you have but it just doesn't want to delete the subsequent data, instead the last one only. I check the logs and it is doing the correct things. It just seems that livewire doesn't update the items
Will this not create more load on the server since it will make requests back and fort to the backend? With a small handful of users, I don't really see a problem, but if you have hundreds, I feel that this can really create a massive issue.
can i use the $orderProducts variable to insert the data from the Livewire component?
Great video. I need a livewire example of a nested dropdown like COUNTRY and CITY. How can we do it using livewire. Should I learn livewire for Laravel projects or vuejs ?
There is a minor bug when removing a product I encountered. Luckily the livewirekit has the fix :) I would just like to share it here in case someone is following the video.
At 12:50 array_values($this->orderProducts); should be $this->orderProducts = array_values($this->orderProducts);
I should have watched till the end :)
Great example but I think i missed a step in the installation cause the User access and the register link does not appear only the Laravel welcome page ! Do I need to run the laravel UI or any kind of Auth after I run composer install command ?
For this tutorial you don't need Auth at all, but yes I used Laravel UI package to give me the design layout.
Thanks for this tutorial. What about adding images within this form, how do I manipulate them? Meaning, how can i access multiple images in livewire and store them in the DB?
Hello Professor, I liked your very interesting class, I am trying to unite this class with the other class of the Selects dependent on three but the part of updating the Second select when changing the First does not work, it only does it if I give it to the add more button that updates the second select
I appreciate what you can guide me with, I am learning Laravel and Livewire
teacher I was able to solve it thanks for your teachings!
Sir how can update?
How do I add a heading to product details form and have separate products for each heading??? Your content is already helping a lot. Thanks in advance
I must say I feel it is stressful using jquery to perform all of these after watching this video. I am definitely using livewire on my next project
thanks for very usefull tutorial,
one question? how to validate the fields?
How can we save orders with Livewire way without submitting the form?
Why you have only 52ms response time? On my local environment I have about 250ms response every ajax request. What is your server configuration?
Will it not increase the server overhead?
How do you prevent pressing enter from creating a new child component?
I am new in livewire i use vue js before and i asking for design and ui in live wire can i found package do animation and ui component fast
Can you do a full courses on livewire ? Say covering the setup of a fully functioning calendar where I can setup appointments exe, as well as Projects list and client info page with address city state and zip code, contact phone exe. An avatar and job photos for the work that is to be completed before and after; that type of thing how about an API how would that be down in livewire or can it?
Thank You. However, what if we have the price in another input "not in the options". how to implement that
Can we save images with this same way ?
Hi, Povilas Korop, how I make the action column stable from the scroll in livewire datatable please help me with this.
Sorry I don't have any quick advice about it.
Won't it reduce the performance as server-side rendering is slower than client-side rendering?
What you mean? Blade and Nuxt are slower than Pure VueJs?
can you create an example on searching autosuggest show onfocus and hide onblur with livewire
how to add select2 to select product i have problem with this one week ago sir pls help ?:(
i have tried inertia js but this is also more dynamic
Whit is the name of the tutorial playlist?
How do i update the field on livewire ?
how to show old data in the form if any request failed.
I implemented this in my project but I want to add Select2 plugin to select input and with JavaScrip querySelectorAll only select the first element ..what the problem
Select2 and Livewire don't play well together, I wouldn't recommend this
Which Chrome extensions are you using
Fake Filler
Would love to see a sample video on how to callback JSON in an API. Like: user enters data in backend form > entry gets a uniique code which is the URL (domain.com/id/uniquecode) > we call that data remotely with the unique url > verify their API key connected to the id in the url > get JSON from their Form back by reading the uniquecode in the DB.
Did that make sense? :) We do all this on our own platforms now, but would like to learn how to do it in Laravel
Thanks for your videos, very nice!
Sounds like quite an edge case function, I'm trying to shoot videos for broader cases, so more people would benefit. Sorry, yours will not go on my to-do list this time :)
@@PovilasKorop No problem. It was worth a shot✌🏻.
Hello Povilas, by the way what's the difference between for example $blog->author->name and $blog->author()->name. I find that each at times give different outcome (at some instance causing no results being returned)
Watch this video for the answer: ruclips.net/video/MbksBczShcA/видео.html
Next project , I am going to use livewire
Very nice tuto, i have a small question
how can i add the price of the product in the same table ?
Awesome, Can you make a tutorial for Nesting Components!
I'm actually struggling to find the best use-case for those, maybe you have one?
@@PovilasKorop In this video Mat Staufer explains the concept along with Caleb who proposes a nice use case for it, watch it around minute 25 - 35 if you short on time. ruclips.net/video/y3TQq534dRM/видео.html
I am starting with livewire now on a project and I need to implement a combination of parent-child functionality with a dependent dropdowns. Normaly, when there is a single component, I would track the list of values + the selected value. However,in my case I need to have a 2-level dependent dropdowns on each child separately. So if we continue with this example, each row should also have a dropdown for product category and the product dropdown should be dependent on the category selected. The category list can be populated once in teh parent, as it is going to be the same for all children, but the product list needs to refresh for each child separately on changing the category selection.
Anyone has any idea how to make such a combo work? I have tried nested components, but still something messes it up for me and I honestly, I am clueless on why...
Great video again.
I have a quick question;
I am working on a personal project and out of curiosity, I decided to add days and hours to my project.
Like, you can select a day, and enter an hour. You video here is sort of similar to what I need, but how would you recommend I tackle this?
It’s more like filling out business hours on the project.
What exactly are you struggling with? With date/time picker? Or with saving the data? Or what exactly?
Povilas Korop I haven’t worked with many to many relationships, so, I’m finding it difficult to manage the days and the corresponding opening hours.
I found 2 packages that do what I want, but it’s a bit confusing.
This are the packages;
1. github.com/spatie/opening-hours
2. github.com/kylekatarnls/business-time
I’d appreciate if you or anyone who’ll read this, make a quick tutorial on any of the packages above. I want to understand how to dynamically store the hours (with a relationship to business_id, in case of multiple businesses) from a form, and to display these hours to the blade view.
@@vokalout We do have a demo-project based, from what I remember, on Spatie Opening hours. Check it out, shops are managing their opening time: 2019.quickadminpanel.com/demo/laravel-shops-map-google-maps
Povilas Korop thanks for the swift response. I went through your code and it is hard to me to fully understand what’s going on as I’m new to laravel and still learning. Do you guys have a video for that package? Thanks
@@vokalout no, sorry
Sir, I got same problem about livewire . Could i get some-way to contact you ?
But how about the validation? where should be the validation?
Disregard already solved it. thanks :)
Hi, this is awsome tutorial, i tried to implement it but im struggling on validation when theres a newly added input field group, using wildcard validation livewire doesnt read the the newly appended input group, how to trigger the validation if theres a new input groups added? thank you and Godbless
niiiiiiiiice
Got this error on Save, LOG.error: foreach() argument must be of type array|object, null given {"userId":1,"exception":{}}
array (
0 =>
array (
'product_id' => '1',
'quantity' => 1,
),
1 =>
array (
'product_id' => '2',
'quantity' => 1,
),
2 =>
array (
'product_id' => '2',
'quantity' => '3',
),
)
Hi, can you give some tips about Opcache ?
Hi Sir, I need your help to fix my problem.
I modified your code by adding some fields.
I rename "order" table into "account" table and rename "product" table into "journal" table.
The new field "date" is adding into journal table and "credit" field & "debit" field in 'account table.
The question is, how to display date rows (months) as column?
The result I need is like :
Account | Januari | February | ..... etc
assets | (sum of credit ) | (sum of credit ) |
liabilities | (sum of credit ) | (sum of credit ) |
.... etc
This query is filter by date of range and sum group by month. Thanks
Sorry I can't answer that in a RUclips comment
@@LaravelDaily Ok Sir, maybe for your next content :)
@@LaravelDaily [ Solved ] I found the solution from your another video : "Laravel Eloquent: Deeper Relationships with One Query ", thanks
I am very confused looking for references how to use the select2 component with Livewire. can i request a tutorial on how to use the select2 component with livewire and how to validate it when the select2 component is deselected ?. For validation templates using bootstrap. I've tried it, but the results don't work very well.
Generally, Livewire doesn't work well with other jQuery libraries, because they both are trying to listen to the changes in values - actual select2 is transforming into a with select inside, and then Livewire is unable to "catch" the value of it.
A workaround is to listen to select2 changes yourself and manually set the value of another hidden input that Livewire would "understand". Found this forum thread, may help: forum.laravel-livewire.com/t/using-livewire-with-select2-selectpicker/18/20
how is this done with edit like i want to retrieve all data back into table
Maybe similar video on editing with Livewire would help: ruclips.net/video/pfSjRcudZVA/видео.html
How about to implement edit option sir ? Same livewire component or new livewire component ?
Should be same, see this example: ruclips.net/video/pfSjRcudZVA/видео.html
@@LaravelDaily I will try sir
how update records?