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.

Configuring and installing Laravel Scout

Configuring and installing Laravel Scout

- [Instructor] All right, so now that we went ahead, we got our project set up, we now have our little blog application, let's say we want to install a search functionality in that. And so we're gonna go ahead and configure and install Laravel Scout in this video. So throughout this video, we're just gonna start off by installing the Laravel Scout package. We're gonna deploy the configuration file, take a look at the configuration file to see what is needed and what options we have, we'll talk a little bit about them, and that will be it for this video. Then we'll move on to learning a little bit more about how search works, and then actually running our indexes. All right, so just like with any package, if we want to install Laravel Scout, we're gonna install it just like other packages. We're gonna do composer require, and then the name of the package. In our case it's laravel slash scout. Pretty easy stuff, go ahead and click Enter to install Laravel Scout into our project, of…

Contents