1. Go to this page and download the library: Download shopapps/scout-solr-engine 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/ */
shopapps / scout-solr-engine example snippets
http://127.0.0.1:8983/solr/#/~collections
namespace App\Models\User;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Str;
use Scout\Solr\Traits\Searchable; // <--- THIS IS IMPORTANT
class User extends Model
{
use HasFactory;
use Searchable;
$model = new \App\Models\User();
$model->buildSolrSchema();
$model = new \App\Models\SearchableModel();
/** @var \Scout\Solr\Engines\SolrEngine $engine */
$engine = app(\Laravel\Scout\EngineManager::class)->engine();
$select = $engine->setCore($model)->createSelect();
$select->setQuery('*:*');
$result = $engine->select($select, $engine->getEndpointFromConfig($model->searchableAs())); // getEndpointFromConfig() is only necessary when your model does not use the default solr instance.