How to implement full-text search with Laravel Scout and Meilisearch?
Jul 27, 2025 am 04:09 AMInstall Laravel Scout and publish configuration files; 2. Install and run Meilisearch through Docker or binary files; 3. Configure Meilisearch driver and host addresses in .env; 4. Add Searchable trait to the model and define the toSearchableArray method; 5. Use the scout:import command to import existing data and enable automatic queue synchronization; 6. Use Post::search() to search, support paging and limit the number of results; 7. Use the where method to filter searches and set index properties through the API; 8. Ensure that the queue worker runs to keep the index updated in real time, and manually refresh and reimport data if necessary; ultimately implement fast, relevant and extensible full-text search functions.
Implementing full-text search in a Laravel application using Laravel Scout and Meilisearch is a powerful way to add fast, relevant search functionality to your models. Here's how to set it up step by step.

? 1. Install and Configure Laravel Scout
Laravel Scout provides a simple, driver-based solution for adding full-text search to Eloquent models.
composer requires laravel/scout
After installation, publish the Scout configuration file:

php artisan vendor:publish --provider="Laravel\Scout\ScoutServiceProvider"
This creates config/scout.php
.
? 2. Install and Run Meilisearch
Meilisearch is a lightweight, open-source search engine with typo-tolerant and instant search capabilities.

Option A: Using Docker (Recommended)
docker run -d -p 7700:7700 -v ./meilisearch-data:/meili_data getmeili/meilisearch:latest
? For development, no API key is required by default. In production, set a master key:
docker run -d -p 7700:7700 -e MEILI_MASTER_KEY=your_master_key getmeili/meilisearch:latest
Option B: Download Binary
Download from http://ipnx.cn/link/d3481ae553dc4bb6b970b151fbc0ec59 and run:
./meilisearch --http-addr 127.0.0.1:7700
? 3. Configure Meilisearch Driver in Laravel
Update your .env
file:
SCOUT_DRIVER=meilisearch MEILISEARCH_HOST=http://127.0.0.1:7700 MEILISEARCH_KEY=master_key_here (optional if set)
Make sure the meilisearch
driver is used in config/scout.php
:
'driver' => env('SCOUT_DRIVER', 'meilisearch'), 'meilisearch' => [ 'host' => env('MEILISEARCH_HOST', 'http://localhost:7700'), 'key' => env('MEILISEARCH_KEY', null), 'index-settings' => [ // Optional: customize per index ], ],
? Note: If you're using an API key, ensure it's consistent between Meilisearch startup and your
.env
.
? 4. Add Searchable Trait to Your Model
Let's say you want to make App\Models\Post
searchable.
namespace App\Models; use Illuminate\Database\Eloquent\Model; use Laravel\Scout\Searchable; class Post extends Model { use Searchable; // Define what data should be indexed public function toSearchableArray() { Return [ 'id' => $this->id, 'title' => $this->title, 'content' => $this->content, 'author_name' => $this->user->name ?? null, ]; } }
? You can customize
toSearchableArray()
to include relationships or transformed data.
? 5. Import Existing Data into Meilisearch
After setting up, sync your existing records:
php artisan scout:import "App\Models\Post"
? This command pushes all
Post
records to Meilisearch.
You can also keep data in sync automatically by using queueing (recommended):
In config/scout.php
:
'queue' => true,
Then make sure your Laravel queue is running ( php artisan queue:work
) so updates/deletes are synchronously.
? 6. Perform Searches in Your Application
Now you can search like this:
use App\Models\Post; $results = Post::search('How to use Laravel')->get();
Return specific columns:
Post::search('Laravel Scout')->take(10)->get();
With pagination (just like Eloquent):
Post::search('tutorial')->paginate(15);
? Meilisearch handles typo tolerance, ranking, and partial matching out of the box.
? 7. Advanced: Filtered or Scoped Search
Use Meilisearch filters via Scout's where
method:
Post::search('Laravel') ->where('published', true) ->where('category_id', 5) ->get();
?? These fields must be marked as filterable attributes in Meilisearch settings.
To configure Meilisearch index settings (like searchable or filterable attributes), you can use the Meilisearch API:
curl -X POST 'http://127.0.0.1:7700/indexes/posts/settings' \ -H 'Content-Type: application/json' \ --data-binary '{ "searchableAttributes": ["title", "content"], "filterableAttributes": ["published", "category_id"] }'
? 8. Keep Index Updated
Scout listens to Eloquent events. After setup:
- New posts are automatically added.
- Updated posts are synchronized.
- Deleted posts are removed.
Ensure your queue worker is running:
php artisan queue:work
Or manually sync:
php artisan scout:import "App\Models\Post"
To flush and return:
php artisan scout:flush "App\Models\Post" php artisan scout:import "App\Models\Post"
Final Notes
- Meilisearch is fast , easy to deploy , and developer-friendly .
- Laravel Scout abstracts the complexity and integrates smoothly.
- Always use queues in production to avoid blocking HTTP requests during indexing.
- Secure your Meilisearch instance in production with API keys and HTTPS.
That's it! You now have a fully functional full-text search using Laravel Scout and Meilisearch. Search queries will be fast, relevant, and scalable for most applications.
The above is the detailed content of How to implement full-text search with Laravel Scout and Meilisearch?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

There are three ways to add custom validation rules in Laravel: using closures, Rule classes, and form requests. 1. Use closures to be suitable for lightweight verification, such as preventing the user name "admin"; 2. Create Rule classes (such as ValidUsernameRule) to make complex logic clearer and maintainable; 3. Integrate multiple rules in form requests and centrally manage verification logic. At the same time, you can set prompts through custom messages methods or incoming error message arrays to improve flexibility and maintainability.

The core methods for Laravel applications to implement multilingual support include: setting language files, dynamic language switching, translation URL routing, and managing translation keys in Blade templates. First, organize the strings of each language in the corresponding folders (such as en, es, fr) in the /resources/lang directory, and define the translation content by returning the associative array; 2. Translate the key value through the \_\_() helper function call, and use App::setLocale() to combine session or routing parameters to realize language switching; 3. For translation URLs, paths can be defined for different languages ??through prefixed routing groups, or route alias in language files dynamically mapped; 4. Keep the translation keys concise and

ToworkeffectivelywithpivottablesinLaravel,firstaccesspivotdatausingwithPivot()orwithTimestamps(),thenupdateentrieswithupdateExistingPivot(),managerelationshipsviadetach()andsync(),andusecustompivotmodelswhenneeded.1.UsewithPivot()toincludespecificcol

Laravelprovidesacleanandflexiblewaytosendnotificationsviamultiplechannelslikeemail,SMS,in-appalerts,andpushnotifications.Youdefinenotificationchannelsinthevia()methodofanotificationclass,andimplementspecificmethodsliketoMail(),toDatabase(),ortoVonage

ServiceProvider is the core mechanism used in the Laravel framework for registering services and initializing logic. You can create a custom ServiceProvider through the Artisan command; 1. The register method is used to bind services, register singletons, set aliases, etc., and other services that have not yet been loaded cannot be called; 2. The boot method runs after all services are registered and is used to register event listeners, view synthesizers, middleware and other logic that depends on other services; common uses include binding interfaces and implementations, registering Facades, loading configurations, registering command-line instructions and view components; it is recommended to centralize relevant bindings to a ServiceProvider to manage, and pay attention to registration

Dependency injection automatically handles class dependencies through service containers in Laravel without manual new objects. Its core is constructor injection and method injection, such as automatically passing in the Request instance in the controller. Laravel parses dependencies through type prompts and recursively creates the required objects. The binding interface and implementation can be used by the service provider to use the bind method, or singleton to bind a singleton. When using it, you need to ensure type prompts, avoid constructor complications, use context bindings with caution, and understand automatic parsing rules. Mastering these can improve code flexibility and maintenance.

Laravel performance optimization can improve application efficiency through four core directions. 1. Use the cache mechanism to reduce duplicate queries, store infrequently changing data through Cache::remember() and other methods to reduce database access frequency; 2. Optimize database from the model to query statements, avoid N 1 queries, specifying field queries, adding indexes, paging processing and reading and writing separation, and reduce bottlenecks; 3. Use time-consuming operations such as email sending and file exporting to queue asynchronous processing, use Supervisor to manage workers and set up retry mechanisms; 4. Use middleware and service providers reasonably to avoid complex logic and unnecessary initialization code, and delay loading of services to improve startup efficiency.

Methods to manage database state in Laravel tests include using RefreshDatabase, selective seeding of data, careful use of transactions, and manual cleaning if necessary. 1. Use RefreshDatabasetrait to automatically migrate the database structure to ensure that each test is based on a clean database; 2. Use specific seeds to fill the necessary data and generate dynamic data in combination with the model factory; 3. Use DatabaseTransactionstrait to roll back the test changes, but pay attention to its limitations; 4. Manually truncate the table or reseed the database when it cannot be automatically cleaned. These methods are flexibly selected according to the type of test and environment to ensure the reliability and efficiency of the test.
