LaravelPackages.net
Acme Inc.
Toggle sidebar
hackerboy/laravel-scout-elastic

Elastic Driver for Laravel Scout

100
0
6.0.2
About hackerboy/laravel-scout-elastic

hackerboy/laravel-scout-elastic is a Laravel package for elastic driver for laravel scout. It currently has 0 GitHub stars and 100 downloads on Packagist (latest version 6.0.2). Install it with composer require hackerboy/laravel-scout-elastic. Discover more Laravel packages by hackerboy or browse all Laravel packages to compare alternatives.

Last updated

Laravel Scout Elasticsearch Driver

Software License

This package makes is the Elasticsearch driver for Laravel Scout.

Contents

Installation

You can install the package via composer:

composer require hackerboy/laravel-scout-elastic

You must add the Scout service provider and the package service provider in your app.php config (this will happen automatically with Laravel 5.5 or above):

// config/app.php
'providers' => [
    ...
    Laravel\Scout\ScoutServiceProvider::class,
    ...
    HackerBoy\LaravelElasticsearch\ElasticsearchProvider::class,
],

Setting up Elasticsearch configuration

You must have a Elasticsearch server up and running with the index you want to use created

If you need help with this please refer to the Elasticsearch documentation

After you've published the Laravel Scout package configuration:

// config/scout.php
// Set your driver to elasticsearch
    'driver' => env('SCOUT_DRIVER', 'elasticsearch'),

...
    'elasticsearch' => [
        'hosts' => [
            env('ELASTICSEARCH_HOST', 'http://localhost'),
        ],
    ],
...

Usage

Now you can use Laravel Scout as described in the official documentation

Credits

License

The MIT License (MIT).

Star History Chart