bookinventory/app/Services/Search/BookConfigurator.php

14 lines
384 B
PHP
Raw Normal View History

2020-12-26 10:46:23 +00:00
<?php
namespace App\Services\Search;
use ScoutElastic\IndexConfigurator;
class BookConfigurator extends IndexConfigurator
{
// It's not obligatory to determine name. By default it'll be a snaked class name without `IndexConfigurator` part.
protected $name = 'books';
// You can specify any settings you want, for example, analyzers.
protected $settings = [
];
}