From the course: Extending Laravel with First Party Packages

Unlock this course with a free trial

Join today to access over 22,600 courses taught by industry experts.

Client-side searches

Client-side searches

- [Instructor] All right, so we have done a lot with Laravel Scout in the past few videos, and in the previous video we finished setting up server-side searching. So we actually had a workable search engine in our application which is really cool. Now what we wanna work on is client-side searching, and so we're gonna finish up by building a client-side search experience. And this is gonna be the most popular experience you tend to work with in your applications today because it creates a very responsive and high-quality-feeling experience. As users type they see the results appear live and that's what we're gonna be building in this video. Now we're gonna be doing this by using Vue.js as the JavaScript framework for the front end so that we can handle all of this client-side. And the reason I wanna use Vue.js is because it is the most commonly used framework in the Laravel community. The Laravel community tends to gravitate towards Vue.js and it comes pre-installed with Laravel. So…

Contents