1. Go to this page and download the library: Download irto/solrio 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/ */
use Illuminate\Database\Eloquent\Model;
use Irto\Solrio\Model\Searchable;
use Irto\Solrio\Model\SearchTrait;
class Dummy extends Model implements Searchable // use of Searchable is optional, without this will be always available to search
{
use SearchTrait;
/**
* Is the model available for searching?
*/
public function isSearchable()
{
return $this->publish;
}
}
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Search; // if alias is configured
class DummyUpdatedListener extends ShouldQueue
{
use InteractsWithQueue;
public function handle($event)
{
$model = $event->getModel();
Search::update($model); // you can use 'App::offsetGet('search')->update($model);' instead
}
}
php artisan search:rebuild
php artisan search:clear
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.