Looking to hire Laravel developers? Try LaraJobs

laravel-scout-elastic maintained by solluti

Description
Elastic Driver for Laravel Scout
Last update
2020/04/17 20:31 (dev-master)
Links
Downloads
612

Comments
comments powered by Disqus

Laravel Scout Elasticsearch Driver

Software License

This package provides a Elasticsearch driver for Laravel Scout.

Contents

Installation

You can install the package via composer:

composer require solluti/laravel-scout-elastic

You must add the Scout service provider and the package service provider in your app.php config:

// config/app.php
'providers' => [
    ...
    Laravel\Scout\ScoutServiceProvider::class,
    ...
    ScoutEngines\Elasticsearch\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' => [
        'index' => env('ELASTICSEARCH_INDEX', 'laravel'),
        'hosts' => [
                 [
                'host' => env('ELASTICSEARCH_HOST', '127.0.0.1'),
                'port' => env('ELASTICSEARCH_PORT', 9200),
                'user' => env('ELASTICSEARCH_USER', ''),
                'pass' => env('ELASTICSEARCH_PASS', ''),
                'scheme' => env('ELASTICSEARCH_SCHEME', 'http'),
            ],
        ],
    ],
...

Usage

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

License

The MIT License (MIT).