Brilliant video, Thank you. I used to use PHP many years ago before moving to JS, but looking at how the PHP ecosystem has progressed, I am keen to get back and get productive again.
Thank you for your Time ❤. I started learning Laravel and Livewire on my own a few weeks ago and that was the most informative 30min I’ve seen on this subject so far. Abo placed
I'would like to know if you have the same error: when I change the value of the perPage dropDownlist (for example from 10 rows to 20 rows) and then navigate through the paginator, The paginator return to 10 rows per page instead of allow me navigate between pages with 20 rows per page.
Thanks for your video! Everythig ok until I've got an error. After clic on perpage (50 register per page) and then clic on any page of the paginator I've got "The GET method is not supported for route livewire/update. Supported methods: POST". I've alredy added WithPagination on my component but the error is still happening. Any advice how to solve it?
Thanks for the recent content. Livewire makes complex things so easy. Regarding the scope: wouldn't it be better to return early if $value is null? No point in adding those where clauses in that case.
@@CodewithBurt It’s more about team consistency. Better to do it everywhere to avoid performance issues than try and decide on a case-by-case basis IMHO.
Be sure to check if you installed Livewire correctly, maybe you have 2 instances of Alpine included, or some other javascript error. Try checking your console output.
wow, it's like magic! thank you. anyway i have a question, i already use WithPagination, but sometime still got "The GET method is not supported for route livewire/update. Supported methods: POST." error, i need your help, thanks
Brilliant video, Thank you. I used to use PHP many years ago before moving to JS, but looking at how the PHP ecosystem has progressed, I am keen to get back and get productive again.
Glad it was helpful!
Thank you for your Time ❤. I started learning Laravel and Livewire on my own a few weeks ago and that was the most informative 30min I’ve seen on this subject so far. Abo placed
Thanks ! I'm glad you liked it!
Livewire makes this very elegant. Very good tutorial which makes it clear and straightforward😃. Packages are overkill for these things IMO.
I'would like to know if you have the same error: when I change the value of the perPage dropDownlist (for example from 10 rows to 20 rows) and then navigate through the paginator, The paginator return to 10 rows per page instead of allow me navigate between pages with 20 rows per page.
I think this is related to your other question...
Thank you very much for this great tutorial!
Glad you liked it!
Thanks for your video! Everythig ok until I've got an error. After clic on perpage (50 register per page) and then clic on any page of the paginator I've got "The GET method is not supported for route livewire/update. Supported methods: POST". I've alredy added WithPagination on my component but the error is still happening. Any advice how to solve it?
I found the solutions with indicating the path, in my case: $providers->setPath(route('providers'));
Sorry for my late response, I guess you're running into this issue because alpine isn't active in some way.
Thx that was very informative 🔥
Glad you enjoyed!
very clear.... i like how u code....
n now i just want u to make more videos 😂
More to come!
In Livewire 3 and Laravel 11, you must to add the WithPagination trait and publish Livewire's pagination views to render page navigation links
Correct!
Thanks for the recent content. Livewire makes complex things so easy. Regarding the scope: wouldn't it be better to return early if $value is null? No point in adding those where clauses in that case.
You could do that. But most of the time performance would be the same.
@@CodewithBurt It’s more about team consistency. Better to do it everywhere to avoid performance issues than try and decide on a case-by-case basis IMHO.
It all depends on the use-case indeed.
wire:model doesn't work in my project. How to fix? it doesn't get the value of the perPage.
Be sure to check if you installed Livewire correctly, maybe you have 2 instances of Alpine included, or some other javascript error. Try checking your console output.
wow, it's like magic! thank you. anyway i have a question, i already use WithPagination, but sometime still got "The GET method is not supported for route livewire/update. Supported methods: POST." error, i need your help, thanks
Have you tried php artisan optimize:clear ?
i follow this video, why my datatable is very slowly to sort asc & desc.
i dont know where my problem.
It all depends on the server you're using, how many data you're trying to query and render.
Can you give some specifics?
"I want to ask about how to solve this so that regular html can do this"
You simply can't the "
Thanks, Im was stuck with tutorials on Livewire 2 and they work dont using Livewire 3
I'd suggest updating your Livewire2 projects to Livewire3, it's a game changer. :-)
Just use a package...
What's the fun about that right 😁. You could use a package indeed, but we're trying to learn the habit of how to create stuff here.