@@ -21,7 +21,7 @@ Overview
21
21
--------
22
22
23
23
In this guide, you can learn how to use the Laravel Scout feature in
24
- your {+odm-long+} application. Scout allows you to implement full-text
24
+ your {+odm-long+} application. Scout enables you to implement full-text
25
25
search on your Eloquent models. To learn more, see `Laravel Scout
26
26
<https://laravel.com/docs/{+laravel-docs-version+}/scout>`__ in the
27
27
Laravel documentation.
@@ -40,7 +40,7 @@ functionality:
40
40
indexes, see the :ref:`laravel-as-index` section of the Atlas
41
41
Search guide.
42
42
43
- - Allows you to automatically replicate data from MongoDB into a
43
+ - Enables you to automatically replicate data from MongoDB into a
44
44
search engine such as `Meilisearch <https://www.meilisearch.com/>`__
45
45
or `Algolia <https://www.algolia.com/>`__. You can use a MongoDB Eloquent
46
46
model as the source to import and index. To learn more about indexing
@@ -97,7 +97,7 @@ documents for MongoDB Atlas Search from Eloquent models (MongoDB or SQL).
97
97
protected $connection = 'mongodb';
98
98
}
99
99
100
- The ``Searchable`` trait also allows you to reformat documents,
100
+ You can also use the ``Searchable`` trait to reformat documents,
101
101
embed related documents, or transform document values. To learn
102
102
more, see the `Configuring Searchable Data
103
103
<https://laravel.com/docs/{+laravel-docs-version+}/scout#configuring-searchable-data>`__
@@ -203,6 +203,11 @@ documents for MongoDB Atlas Search from Eloquent models (MongoDB or SQL).
203
203
]
204
204
], ...
205
205
206
+ To learn more about defining Atlas Search index definitions, see the
207
+ :atlas:`Define Field Mappings
208
+ </atlas-search/define-field-mappings/>` guide in the Atlas
209
+ documentation.
210
+
206
211
.. note::
207
212
208
213
MongoDB can take up to a minute to create and finalize
0 commit comments