From the course: Extending Laravel with First Party Packages

Unlock this course with a free trial

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

Server-side searches

Server-side searches

- [Instructor] Alright, so we have done a lot to get set up here so we can start running searches. And now we're gonna go ahead and actually start running searches on the server-side. So that's gonna be the goal of this video. And in this video, we're gonna get everything set up to start accepting searches. We're gonna create a search interface and create some search controllers, and then, we'll process a basic search result. And that's what we'll get done in this video. And then in the second part, we'll go through and get into some more of the advanced displaying of the results back to the user and so forth. Let's go ahead and get started cause there's a lot to cover. Alright, so now that we're inside of here, we wanna go ahead and create that search experience. Now, the first thing we need to do is we need to create a route that we can use to run our searches. So let's go into our routes file and create the route here. Now the route that we want to create is gonna be a simple get…

Contents