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.

Server-side searches, continued

Server-side searches, continued

- [Instructor] Alright, so we went ahead and got started creating a server-side search experience. And we did that in the previous video. And now in this video we wanna basically just pick up where we left off and just do a few last things to finish up the project. We're gonna first start off by making the search results pretty. We were doing a dump and die process at the end of the last one to display 'em all. So, I wanna go through, loop through the results, and make them look a little bit nicer to the user. And then also, in case we get too many search results back we're gonna talk about how we can paginate the search results and make it searchable through pagination. All right, so here we are where we left off in the previous video. Now, one of the biggest things we wanna do is, we wanna these search results look a little bit nicer. So, we wanna get rid of this die and dump method or dump and die method, and just make this look a lot nicer to the user, so we can, it really looks…

Contents