forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertOne.txt
72 lines (52 loc) · 1.71 KB
/
insertOne.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.. _laravel-insert-one-usage:
=================
Insert a Document
=================
.. facet::
:name: genre
:values: reference
.. meta::
:keywords: insert one, add one, code example
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
You can insert a document into a collection by calling the ``create()`` method on
an Eloquent model or query builder.
To insert a document, pass the data you need to insert as a document containing
the fields and values to the ``create()`` method.
Example
-------
This usage example performs the following actions:
- Uses the ``Movie`` Eloquent model to represent the ``movies`` collection in the
``sample_mflix`` database
- Inserts a document into the ``movies`` collection
The example calls the ``create()`` method to insert a document that contains the following
information:
- ``title`` value of ``"Marriage Story"``
- ``year`` value of ``2019``
- ``runtime`` value of ``136``
.. io-code-block::
:copyable: true
.. input:: ../includes/usage-examples/InsertOneTest.php
:start-after: begin-insert-one
:end-before: end-insert-one
:language: php
:dedent:
.. output::
:language: json
:visible: false
{
"title": "Marriage Story",
"year": 2019,
"runtime": 136,
"updated_at": "...",
"created_at": "...",
"_id": "..."
}
.. include:: /includes/usage-examples/fact-edit-laravel-app.rst
.. tip::
You can also use the ``save()`` or ``insert()`` methods to insert a document into a collection.
To learn more about insert operations, see the :ref:`laravel-fundamentals-insert-documents` section
of the Write Operations guide.