ElasticLens for Laravel uses Elasticsearch to create and sync a searchable index of your Eloquent models.
User::viaIndex()->searchPhrase('loves dogs')->where('status','active')->get();
Yes, but mostly no.
ElasticLens is built from the ground up around Elasticsearch.
It integrates directly with the Laravel-Elasticsearch package (Elasticsearch using Eloquent), creating a dedicated Index Model
that is fully accessible and automatically synced with
your Base Model
.
How?
The
Index Model
acts as a separate Elasticsearch model managed by ElasticLens, yet you retain full control over it, just like any other Laravel model. In addition to working directly with theIndex Model
, ElasticLens offers tools for mapping fields (with embedding relationships) during the build process, and managing index migrations.
For Example, a base
User
Model will sync with an ElasticsearchIndexedUser
Model that provides all the features from Laravel-Elasticsearch to search yourBase Model
.
- Zero config setup: Start indexing with minimal configuration.
- Eloquent-Like Querying: Search your models as if you're using Eloquent, with the full power of Elasticsearch.
- Custom Field Mapping: Control how your index is built, including mapping model relationships as embedded fields.
- Control Observed models: Tailor which models are observed for changes.
- Manage Elasticsearch Migrations: Define a required blueprint for your index migrations.
- Comprehensive CLI Tools: Manage index health, migrate/rebuild indexes, and more with Artisan commands.
- Built-in IndexableBuildState model: Track the build states of your indexes.
- Built-in Migration Logs: Track the build states of your indexes.
- Laravel 10.x & 11.x
- Elasticsearch 8.x
You can install the package via composer:
composer require pdphilip/elasticlens
Publish the config file and run the migrations with:
php artisan lens:install
The Walkthrough below will demonstrate all the features by way of an example.
In this example, we'll index a User
model.
use PDPhilip\ElasticLens\Indexable;
class User extends Eloquent implements Authenticatable, CanResetPassword
{
use Indexable;
- ElasticLens expects the
Index Model
to be named asIndexed
+BaseModelName
and located in theApp\Models\Indexes
directory.
/**
* Create: App\Models\Indexes\IndexedUser.php
*/
namespace App\Models\Indexes;
use PDPhilip\ElasticLens\IndexModel;
class IndexedUser extends IndexModel{}
- That's it! Your User model will now automatically sync with the IndexedUser model whenever changes occur. You can search your User model effortlessly, like:
User::viaIndex()->searchTerm('running')->orSearchTerm('swimming')->get();
Perform quick and easy full-text searches:
User::search('loves espressos');
Search for the phrase
loves espressos
across all fields and return the baseUser
models
Cute. But that's not why we're here...
To truly harness the power of Laravel-Elasticsearch for eloquent-like querying, you can use more advanced queries:
BaseModel::viaIndex()->{build your ES Eloquent query}->first();
BaseModel::viaIndex()->{build your ES Eloquent query}->get();
BaseModel::viaIndex()->{build your ES Eloquent query}->paginate();
BaseModel::viaIndex()->{build your ES Eloquent query}->avg('orders');
BaseModel::viaIndex()->{build your ES Eloquent query}->distinct();
BaseModel::viaIndex()->{build your ES Eloquent query}->{etc}
User::viaIndex()->searchTerm('nara')
->where('state','active')
->limit(3)->get();
This searches all users who are
active
for the term 'nara' across all fields and return the top 3 results.
User::viaIndex()->searchPhrase('Ice bathing')
->orderByDesc('created_at')
->limit(5)->get();
Searches all fields for the phrase 'Ice bathing' and returns the 3 newest results. Phrases match exact words in order.
User::viaIndex()->searchTerm('David',['first_name^3', 'last_name^2', 'bio'])->get();
Searches for the term 'David', boosts the first_name field by 3, last_name by 2, and also checks the bio field. Results are ordered by score.
User::viaIndex()->where('status', 'active')
->filterGeoPoint('home.location', '5km', [0, 0])
->orderByGeo('home.location',[0, 0])
->get();
Finds all active users within a 5km radius from the coordinates [0, 0], ordering them from closest to farthest. Not kidding.
User::viaIndex()->whereRegex('favourite_color', 'bl(ue)?(ack)?')->get();
Finds all users whose favourite color is blue or black.
User::viaIndex()->whereRegex('favorite_color', 'bl(ue)?(ack)?')->paginate(10);
Paginate search results.
User::viaIndex()->whereNestedObject('user_logs', function (Builder $query) {
$query->where('user_logs.country', 'Norway')
->where('user_logs.created_at', '>=',Carbon::now()->modify('-1 week'));
})->get();
Searches nested user_logs for users who logged in from Norway within the last week. Whoa.
User::viaIndex()->searchTerm('quikc')->asFuzzy()
->orSearchTerm('brwn')->asFuzzy()
->orSearchTerm('foks')->asFuzzy()
->get();
No spell, no problem. Search Fuzzy.
User::viaIndex()->searchTerm('espresso')->withHighlights()->get();
Searches for 'espresso' across all fields and highlights where it was found.
User::viaIndex()->searchPhrasePrefix('loves espr')->withHighlights()->get();
Searches for the phrase prefix 'loves espr' across all fields and highlights where it was found.
- Since the
viaIndex()
taps into theIndexModel
, the results will be instances ofIndexedUser
, not the baseUser
model. - This can be useful for display purposes, such as highlighting embedded fields.
- However, in most cases you'll need to return and work with the
Base Model
- Simply chain
->asBase()
at the end of your query:
User::viaIndex()->searchTerm('david')->orderByDesc('created_at')->limit(3)->get()->asBase();
User::viaIndex()->whereRegex('favorite_color', 'bl(ue)?(ack)?')->get()->asBase();
User::viaIndex()->whereRegex('favorite_color', 'bl(ue)?(ack)?')->first()->asBase();
User::viaIndex()->searchTerm('david')->orderByDesc('created_at')->limit(3)->getBase();
User::viaIndex()->whereRegex('favorite_color', 'bl(ue)?(ack)?')->getBase();
- Complete the query string with
->paginateBase()
// Returns a pagination instance of Users ✔️:
User::viaIndex()->whereRegex('favorite_color', 'bl(ue)?(ack)?')->paginateBase(10);
// Returns a pagination instance of IndexedUsers:
User::viaIndex()->whereRegex('favorite_color', 'bl(ue)?(ack)?')->paginate(10);
// Will not paginate ❌ (but will at least return a collection of 10 Users):
User::viaIndex()->whereRegex('favorite_color', 'bl(ue)?(ack)?')->paginate(10)->asBase();
You can define the fieldMap()
method in your Index Model
to control how the index is built during synchronization.
use PDPhilip\ElasticLens\Builder\IndexBuilder;
use PDPhilip\ElasticLens\Builder\IndexField;
class IndexedUser extends IndexModel
{
protected $baseModel = User::class;
public function fieldMap(): IndexBuilder
{
return IndexBuilder::map(User::class, function (IndexField $field) {
$field->text('first_name');
$field->text('last_name');
$field->text('email');
$field->bool('is_active');
$field->type('state', UserState::class); //Maps enum
$field->text('created_at');
$field->text('updated_at');
});
}
- The
IndexedUser
records will contain only the fields defined in thefieldMap()
. The value of$user->id
will correspond to$indexedUser->_id
. - Fields can also be derived from attributes in the
Base Model
. For example,$field->bool('is_active')
could be derived from a custom attribute in theBase Model
:public function getIsActiveAttribute(): bool { return $this->updated_at >= Carbon::now()->modify('-30 days'); }
- When mapping enums, ensure that you also cast them in the
Index Model
. - If a value is not found during the build process, it will be stored as
null
.
You can further customize the indexing process by embedding relationships as nested objects within your Index Model. The builder allows you to define fields and embed relationships, enabling more complex data structures in your Elasticsearch index.
- If a
User
has manyProfiles
use PDPhilip\ElasticLens\Builder\IndexBuilder;
use PDPhilip\ElasticLens\Builder\IndexField;
class IndexedUser extends IndexModel
{
protected $baseModel = User::class;
public function fieldMap(): IndexBuilder
{
return IndexBuilder::map(User::class, function (IndexField $field) {
$field->text('first_name');
$field->text('last_name');
$field->text('email');
$field->bool('is_active');
$field->type('type', UserType::class);
$field->type('state', UserState::class);
$field->text('created_at');
$field->text('updated_at');
$field->embedsMany('profiles', Profile::class)->embedMap(function (IndexField $field) {
$field->text('profile_name');
$field->text('about');
$field->array('profile_tags');
});
});
}
- If a
Profile
has oneProfileStatus
use PDPhilip\ElasticLens\Builder\IndexBuilder;
use PDPhilip\ElasticLens\Builder\IndexField;
class IndexedUser extends IndexModel
{
protected $baseModel = User::class;
public function fieldMap(): IndexBuilder
{
return IndexBuilder::map(User::class, function (IndexField $field) {
$field->text('first_name');
$field->text('last_name');
$field->text('email');
$field->bool('is_active');
$field->type('type', UserType::class);
$field->type('state', UserState::class);
$field->text('created_at');
$field->text('updated_at');
$field->embedsMany('profiles', Profile::class)->embedMap(function (IndexField $field) {
$field->text('profile_name');
$field->text('about');
$field->array('profile_tags');
$field->embedsOne('status', ProfileStatus::class)->embedMap(function (IndexField $field) {
$field->text('id');
$field->text('status');
});
});
});
}
- If a
User
belongs to anAccount
use PDPhilip\ElasticLens\Builder\IndexBuilder;
use PDPhilip\ElasticLens\Builder\IndexField;
class IndexedUser extends IndexModel
{
protected $baseModel = User::class;
public function fieldMap(): IndexBuilder
{
return IndexBuilder::map(User::class, function (IndexField $field) {
$field->text('first_name');
$field->text('last_name');
$field->text('email');
$field->bool('is_active');
$field->type('type', UserType::class);
$field->type('state', UserState::class);
$field->text('created_at');
$field->text('updated_at');
$field->embedsMany('profiles', Profile::class)->embedMap(function (IndexField $field) {
$field->text('profile_name');
$field->text('about');
$field->array('profile_tags');
$field->embedsOne('status', ProfileStatus::class)->embedMap(function (IndexField $field) {
$field->text('id');
$field->text('status');
});
});
$field->embedsBelongTo('account', Account::class)->embedMap(function (IndexField $field) {
$field->text('name');
$field->text('url');
});
});
}
- If a
User
belongs to aCountry
and you don't need to observe theCountry
model:
use PDPhilip\ElasticLens\Builder\IndexBuilder;
use PDPhilip\ElasticLens\Builder\IndexField;
class IndexedUser extends IndexModel
{
protected $baseModel = User::class;
public function fieldMap(): IndexBuilder
{
return IndexBuilder::map(User::class, function (IndexField $field) {
$field->text('first_name');
$field->text('last_name');
$field->text('email');
$field->bool('is_active');
$field->type('type', UserType::class);
$field->type('state', UserState::class);
$field->text('created_at');
$field->text('updated_at');
$field->embedsMany('profiles', Profile::class)->embedMap(function (IndexField $field) {
$field->text('profile_name');
$field->text('about');
$field->array('profile_tags');
$field->embedsOne('status', ProfileStatus::class)->embedMap(function (IndexField $field) {
$field->text('id');
$field->text('status');
});
});
$field->embedsBelongTo('account', Account::class)->embedMap(function (IndexField $field) {
$field->text('name');
$field->text('url');
});
$field->embedsBelongTo('country', Country::class)->embedMap(function (IndexField $field) {
$field->text('country_code');
$field->text('name');
$field->text('currency');
})->dontObserve(); // Don't observe changes in the country model
});
}
- If a
User
has ManyUserLogs
and you only want to embed the last 10:
use PDPhilip\ElasticLens\Builder\IndexBuilder;
use PDPhilip\ElasticLens\Builder\IndexField;
class IndexedUser extends IndexModel
{
protected $baseModel = User::class;
public function fieldMap(): IndexBuilder
{
return IndexBuilder::map(User::class, function (IndexField $field) {
$field->text('first_name');
$field->text('last_name');
$field->text('email');
$field->bool('is_active');
$field->type('type', UserType::class);
$field->type('state', UserState::class);
$field->text('created_at');
$field->text('updated_at');
$field->embedsMany('profiles', Profile::class)->embedMap(function (IndexField $field) {
$field->text('profile_name');
$field->text('about');
$field->array('profile_tags');
$field->embedsOne('status', ProfileStatus::class)->embedMap(function (IndexField $field) {
$field->text('id');
$field->text('status');
});
});
$field->embedsBelongTo('account', Account::class)->embedMap(function (IndexField $field) {
$field->text('name');
$field->text('url');
});
$field->embedsBelongTo('country', Country::class)->embedMap(function (IndexField $field) {
$field->text('country_code');
$field->text('name');
$field->text('currency');
})->dontObserve(); // Don't observe changes in the country model
$field->embedsMany('logs', UserLog::class, null, null, function ($query) {
$query->orderBy('created_at', 'desc')->limit(10); // Limit the logs to the 10 most recent
})->embedMap(function (IndexField $field) {
$field->text('title');
$field->text('ip');
$field->array('log_data');
});
});
}
text($field)
integer($field)
array($field)
bool($field)
type($field, $type)
- Set own type (like Enums)embedsMany($field, $relatedModelClass, $whereRelatedField, $equalsLocalField, $query)
embedsBelongTo($field, $relatedModelClass, $whereRelatedField, $equalsLocalField, $query)
embedsOne($field, $relatedModelClass, $whereRelatedField, $equalsLocalField, $query)
Note: For embeds the $whereRelatedField
, $equalsLocalField
, $query
parameters are optional.
$whereRelatedField
is theforeignKey
&$equalsLocalField
is thelocalKey
and they will be inferred from the relationship if not provided.$query
is a closure that allows you to customize the query for the related model.
embedMap(function (IndexField $field) {})
- Define the mapping for the embedded relationshipdontObserve()
- Don't observe changes in the$relatedModelClass
By default, the base model will be observed for changes (saves) and deletions. When the Base Model
is deleted, the corresponding Index Model
will also be deleted, even in cases of soft deletion.
When you define a fieldMap()
with embedded fields, the related models are also observed. For example:
- A save or delete action on
ProfileStatus
will trigger a chain reaction, fetching the relatedProfile
and thenUser
, which in turn initiates a rebuild of the index for that user record.
However, to ensure these observers are loaded, you need to reference the User model explicitly:
//This alone will not trigger a rebuild
$profileStatus->status = 'Unavailable';
$profileStatus->save();
//This will
new User::class
$profileStatus->status = 'Unavailable';
$profileStatus->save();
If you want ElasticLens to observe ProfileStatus
without requiring a reference to User
, follow these steps:
- Add the
HasWatcher
Trait toProfileStatus
:
use PDPhilip\ElasticLens\HasWatcher;
class ProfileStatus extends Eloquent
{
use HasWatcher;
- Define the Watcher in the
elasticlens.php
Config File:
'watchers' => [
\App\Models\ProfileStatus::class => [
\App\Models\Indexes\IndexedUser::class,
],
],
If you want to disable the automatic observation of the Base Model
, include the following in your Index Model
:
class IndexedUser extends IndexModel
{
protected $baseModel = User::class;
protected $observeBase = false;
Elasticsearch automatically indexes new fields it encounters, but it might not always index them in the way you need. To ensure the index is structured correctly, you can define a migrationMap()
in your Index Model.
Since the Index Model
utilizes the Laravel-Elasticsearch package, you can use IndexBlueprint
to customize your migrationMap()
use PDPhilip\Elasticsearch\Schema\IndexBlueprint;
class IndexedUser extends IndexModel
{
//......
public function migrationMap(): callable
{
return function (IndexBlueprint $index) {
$index->text('name');
$index->keyword('first_name');
$index->text('first_name');
$index->keyword('last_name');
$index->text('last_name');
$index->keyword('email');
$index->text('email');
$index->text('avatar')->index(false);
$index->keyword('type');
$index->text('type');
$index->keyword('state');
$index->text('state');
//...etc
};
}
- Documentation: For more details on migrations, refer to the: https://elasticsearch.pdphilip.com/migrations
- Running the Migration: To execute the migration and rebuild all your indexed, use the following command:
php artisan lens:migrate User
This command will delete the existing index, run the migration, and rebuild all records.
Use the following Artisan commands to manage and monitor your Elasticsearch indexes:
- Check Overall Status:
php artisan lens:status
Displays the overall status of all your indexes and the ElasticLens configuration.
- Check Index Health:
php artisan lens:health User
- Migrate and Build/Rebuild an Index:
php artisan lens:migrate User
Deletes the existing User index, runs the migration, and rebuilds all records.
- Create a New
Index Model
for aBase Model
:
php artisan lens:make Profile
Generates a new index for the Profile
model.
- Bulk (Re)Build Indexes for a
Base Model
:
php artisan lens:build Profile
Rebuilds all the IndexedProfile
records for the Profile
model.
ElasticLens includes a built-in IndexableBuild
model that allows you to monitor and track the state of your index builds. This model records the status of each index build, providing you with insights into the indexing process.
Fields
- string
$model
: The base model being indexed. - string
$model_id
: The ID of the base model. - string
$index_model
: The corresponding index model. - string
$last_source
: The last source of the build state. - IndexableStateType
$state
: The current state of the index build. - array
$state_data
: Additional data related to the build state. - array
$logs
: Logs of the indexing process. - Carbon
$created_at
: Timestamp of when the build state was created. - Carbon
$updated_at
: Timestamp of the last update to the build state.
- @property-read string
$state_name
: The name of the current state. - @property-read string
$state_color
: The color associated with the current state.
Built-in methods include:
IndexableBuild::returnState($model, $modelId, $indexModel);
IndexableBuild::countModelErrors($indexModel);
IndexableBuild::countModelRecords($indexModel);
Note: While you can query the IndexableBuild
model directly, avoid writing or deleting records within it manually, as this can interfere with the health checks and overall integrity of the indexing process. The model should be
used for reading purposes only to ensure accurate monitoring and reporting.
ElasticLens includes a built-in IndexableMigrationLog
model for monitoring and tracking the state of index migrations. This model logs each migration related to an Index Model
.
Fields
- string
$index_model
: The migrated Index Model. - IndexableMigrationLogState
$state
: State of the migration - array
$map
: Migration map that was passed to Elasticsearch. - int
$version_major
: Major version of the indexing process. - int
$version_minor
: Minor version of the indexing process. - Carbon
$created_at
: Timestamp of when the migration was created.
- @property-read string
$version
: Parsed version ex v2.03 - @property-read string
$state_name
: Current state name. - @property-read string
$state_color
: Color representing the current state.
Built-in methods include:
IndexableMigrationLog::getLatestVersion($indexModel);
IndexableMigrationLog::getLatestMigration($indexModel);
Note: While you can query the IndexableMigrationLog
model directly, avoid writing or deleting records within it manually, as this can interfere with versioing of the migrations. The model should be used for reading purposes only to
ensure accuracy.
The MIT License (MIT). Please see License File for more information.