@@ -76,7 +76,7 @@ You can use one of the following ``where()`` method calls to build a query:
76
76
To apply multiple sets of criteria to the find operation, you can chain a series
77
77
of ``where()`` methods together.
78
78
79
- After building your query with the ``where()`` method, chain the ``get()``
79
+ After building your query by using the ``where()`` method, chain the ``get()``
80
80
method to retrieve the query results.
81
81
82
82
This example calls two ``where()`` methods on the ``Movie`` Eloquent model to
@@ -165,7 +165,7 @@ query on an array field:
165
165
that matches documents in which the array field value contains one or
166
166
more of the specified array elements
167
167
168
- After building your query with the ``where()`` method, chain the ``get()``
168
+ After building your query by using the ``where()`` method, chain the ``get()``
169
169
method to retrieve the query results.
170
170
171
171
Select from the following :guilabel:`Exact Array Match` and
@@ -251,7 +251,7 @@ by the ``$search`` field in your query filter that you pass to the
251
251
``where()`` method. The ``$text`` operator performs a text search on the
252
252
text-indexed fields. The ``$search`` field specifies the text to search for.
253
253
254
- After building your query with the ``where()`` method, chain the ``get()``
254
+ After building your query by using the ``where()`` method, chain the ``get()``
255
255
method to retrieve the query results.
256
256
257
257
This example calls the ``where()`` method on the ``Movie`` Eloquent model to
0 commit comments