I already made exactly the same functionality for search on keyUp. I have to mention that this can cause "Too many requests" server error so I would highly recommend that you use some delay when you are typing. Just add an interval that will be reset on every keyup within 500ms (0.5s). that will actually fire your ajax request 500ms after the last key pressed.
Hey Povilas. Thank you so much for all the good videos. I started a new laravel project with vue for some weeks ago and your videos come to the right time. :) Keep going your good work.
Again Nice tutorial as always... always learn something from every video. One suggestion i would like to add tho. Will it be better to create scope on the model rather than querying from the controller itself. The controller seems to have too much code. I was thinking that making scope would hide most logic from the controller and make the controller a little cleaner.
It's good but personally, if the query is not repeated more than once then I wouldn't bother using a scope and all other but It is just a personal preference.
Hey Povilas - I appreciate your videos. They fill in simple everyday gaps we encounter as SDEs. Just a question on whether you have a discord channel where we (the community) can share thoughts about your videos. I would love to share but sometimes complementing solutions are tied to packages we have put together ourselves. Sharing here wouldn't bode well since that is self promoting and riding on another person's (your) content.
I think it's perfectly fine to share here! I view this RUclips channel as a community, maybe not that structured but totally great! Currently not planning to create any separate community or Discord, just don't have time to manage *another* community :)
Hi, How about API that download file like image, xls, xlsx, etc ? I tried to create it with passing header content-type, it's work in web route, but it does't work in api route. how to solve it? please...
Important question : How can i also column search data (say product name ) relational data that is associated with that category ?? i tried to solve it but could not help myself but using the client side searching technique. Can you do it on server side searching?
Can you help me please. It's very important. I want to bind meilisearch in vue3. I did it in vue3 but when I delete or update something in database and try to search it doesn't work . Do you have tutorials how to do this ? I will pay for you . Please help me 🙏😭
Hey Povilas, thank you for the videos, well i have a question which many people asked related to (When and If ) conditions in laravel, which one do you think is faster in terms of performance. Thank you!!! keep going we all love the effort.
I agree datatables are great, but sometimes you just have to use dynamic fetching from backend because of performances, cashing, and a couple of other issues, and to my mind, this really is a great solution :)
Hi, Thank you so much for your educative videos. In a short time I mastered a lot of skills through watching your videos. I have this one problem that I can't seem to work it out. I want to implement a dateBetween filter(start_date, end_date) feature in my report page where I can select dates based on "created_at" fields. Please advise how can I best implement this?
I already made exactly the same functionality for search on keyUp. I have to mention that this can cause "Too many requests" server error so I would highly recommend that you use some delay when you are typing. Just add an interval that will be reset on every keyup within 500ms (0.5s). that will actually fire your ajax request 500ms after the last key pressed.
I was thinking the exact same thing. On service used by many, this would ultimately crash at some point.
Hey Povilas. Thank you so much for all the good videos. I started a new laravel project with vue for some weeks ago and your videos come to the right time. :) Keep going your good work.
Thank you very much for publishing this video.
Again Nice tutorial as always... always learn something from every video.
One suggestion i would like to add tho.
Will it be better to create scope on the model rather than querying from the controller itself. The controller seems to have too much code.
I was thinking that making scope would hide most logic from the controller and make the controller a little cleaner.
It's good but personally, if the query is not repeated more than once then I wouldn't bother using a scope and all other but It is just a personal preference.
@@codingmonkey2003 yeah it all comes down to personal preferences. I personally liked less code on my controller.
Hey Povilas - I appreciate your videos. They fill in simple everyday gaps we encounter as SDEs. Just a question on whether you have a discord channel where we (the community) can share thoughts about your videos. I would love to share but sometimes complementing solutions are tied to packages we have put together ourselves. Sharing here wouldn't bode well since that is self promoting and riding on another person's (your) content.
I think it's perfectly fine to share here! I view this RUclips channel as a community, maybe not that structured but totally great! Currently not planning to create any separate community or Discord, just don't have time to manage *another* community :)
Hi, How about API that download file like image, xls, xlsx, etc ? I tried to create it with passing header content-type, it's work in web route, but it does't work in api route. how to solve it? please...
Important question : How can i also column search data (say product name ) relational data that is associated with that category ?? i tried to solve it but could not help myself but using the client side searching technique. Can you do it on server side searching?
Thanks, Povilas for short and simple example how use server side sorting and search. How you use paginate links on Vue?
With this: github.com/gilbitron/laravel-vue-pagination
@@LaravelDaily haello sir, help in composition api to creat search bar laravel8, vue3
Facing issue to build search bar with laravel 8 + vue3 in composition api. Please help..
Can you help me please. It's very important. I want to bind meilisearch in vue3. I did it in vue3 but when I delete or update something in database and try to search it doesn't work . Do you have tutorials how to do this ? I will pay for you . Please help me 🙏😭
I don't have tutorials about meilisearch
@@LaravelDaily can you make a tutorial please? I will pay for you . Its important for me !! 🙏🙏
Hey Povilas, thank you for the videos, well i have a question which many people asked related to (When and If ) conditions in laravel, which one do you think is faster in terms of performance. Thank you!!! keep going we all love the effort.
what's the content of PostResource::collection($posts);
Good video, but I will continue using Datatables.net that contains almost all the functionality we need.
I agree datatables are great, but sometimes you just have to use dynamic fetching from backend because of performances, cashing, and a couple of other issues, and to my mind, this really is a great solution :)
But how to update browser url with all this params ?
How to search table Column with another relational table data?
Hi, Thank you so much for your educative videos. In a short time I mastered a lot of skills through watching your videos.
I have this one problem that I can't seem to work it out.
I want to implement a dateBetween filter(start_date, end_date) feature in my report page where I can select dates based on "created_at" fields.
Please advise how can I best implement this?
Please make video on livewire modal