You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -155,7 +155,7 @@ To learn more about primary key behavior and customization options, see
155
155
in the Laravel docs.
156
156
157
157
To learn more about the ``_id`` field, ObjectIDs, and the MongoDB document
158
-
structure, see :manual:`Documents </core/document>` in the MongoDB server docs.
158
+
structure, see :manual:`Documents </core/document>` in the Server manual.
159
159
160
160
.. _laravel-model-soft-delete:
161
161
@@ -227,7 +227,7 @@ less than three years ago:
227
227
Planet::where( 'discovery_dt', '>', new DateTime('-3 years'))->get();
228
228
229
229
To learn more about MongoDB's data types, see :manual:`BSON Types </reference/bson-types/>`
230
-
in the MongoDB server docs.
230
+
in the Server manual.
231
231
232
232
To learn more about the Laravel casting helper and supported types, see `Attribute Casting <https://laravel.com/docs/{+laravel-docs-version+}/eloquent-mutators#attribute-casting>`__
233
233
in the Laravel docs.
@@ -289,7 +289,7 @@ in the Laravel docs.
289
289
Extend Third-Party Model Classes
290
290
--------------------------------
291
291
292
-
You can use {+odm-short+} to extend a third-party model class by
292
+
You can use the {+odm-short+} to extend a third-party model class by
293
293
including the ``DocumentModel`` trait when defining your model class. By
294
294
including this trait, you can make the third-party class compatible with
295
295
MongoDB.
@@ -299,7 +299,7 @@ declare the following properties in your class:
299
299
300
300
- ``$primaryKey = '_id'``, because the ``_id`` field uniquely
301
301
identifies MongoDB documents
302
-
- ``$keyType = 'string'``, because {+odm-short+} casts MongoDB
302
+
- ``$keyType = 'string'``, because the {+odm-short+} casts MongoDB
303
303
``ObjectId`` values to type ``string``
304
304
305
305
Extended Class Example
@@ -344,7 +344,7 @@ appropriate import to your model:
344
344
.. note::
345
345
346
346
When enabling soft deletes on a mass prunable model, you must import the
347
-
following {+odm-short+} packages:
347
+
following {+odm-long+} packages:
348
348
349
349
- ``MongoDB\Laravel\Eloquent\SoftDeletes``
350
350
- ``MongoDB\Laravel\Eloquent\MassPrunable``
@@ -437,11 +437,11 @@ You can define the new model class with the following behavior:
437
437
438
438
In the ``"WASP-39 b"`` document in the following code, the
439
439
``schema_version`` field value is less than ``2``. When you retrieve the
440
-
document, {+odm-short+} adds the ``galaxy`` field and updates the schema
440
+
document, the {+odm-short+} adds the ``galaxy`` field and updates the schema
441
441
version to the current version, ``2``.
442
442
443
443
The ``"Saturn"`` document does not contain the ``schema_version`` field,
444
-
so {+odm-short+} assigns it the current schema version upon saving.
444
+
so the {+odm-short+} assigns it the current schema version upon saving.
445
445
446
446
Finally, the code retrieves the models from the collection to
0 commit comments