dev-master
9999999-devElastic Driver for Laravel Scout
The Requires
The Development Requires
laravel elasticsearch elastic scout
Wallogit.com
2017 © Pedro Peláez
Elastic Driver for Laravel Scout
This package makes is the Elasticsearch driver for Laravel Scout., (*2)
You can install the package via composer:, (*3)
``` bash composer require tamayo/laravel-scout-elastic, (*4)
You must add the Scout service provider and the package service provider in your app.php config: ```php // config/app.php 'providers' => [ ... Laravel\Scout\ScoutServiceProvider::class, ... ScoutEngines\Elasticsearch\ElasticsearchProvider::class, ],
You must have a Elasticsearch server up and running with the index you want to use created, (*5)
If you need help with this please refer to the Elasticsearch documentation, (*6)
After you've published the Laravel Scout package configuration:, (*7)
// config/scout.php
// Set your driver to elasticsearch
'driver' => env('SCOUT_DRIVER', 'elasticsearch'),
...
'elasticsearch' => [
'index' => env('ELASTICSEARCH_INDEX', 'laravel'),
'hosts' => [
env('ELASTICSEARCH_HOST', 'http://localhost'),
],
],
...
Now you can use Laravel Scout as described in the official documentation, (*8)
The MIT License (MIT)., (*9)
Elastic Driver for Laravel Scout
laravel elasticsearch elastic scout