PHP code example of boxed-code / laravel-scout-elasticsearch
1. Go to this page and download the library: Download boxed-code/laravel-scout-elasticsearch library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
boxed-code / laravel-scout-elasticsearch example snippets
// config/app.php
'providers' => [
...
Laravel\Scout\ScoutServiceProvider::class,
...
ScoutEngines\Elasticsearch\ElasticsearchProvider::class,
],
// config/scout.php
// Set your driver to elasticsearch
'driver' => env('SCOUT_DRIVER', 'elasticsearch'),
...
'elasticsearch' => [
'debug' => false,
'hosts' => [
env('ELASTICSEARCH_HOST', 'http://localhost'),
],
],
...