forked from mongodb/laravel-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeleteOne.txt
66 lines (47 loc) · 1.88 KB
/
deleteOne.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
.. _laravel-delete-one-usage:
=================
Delete a Document
=================
.. facet::
:name: genre
:values: reference
.. meta::
:keywords: delete one, remove, code example
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
You can delete a document in a collection by retrieving a single Eloquent model and calling
the ``delete()`` method, or by calling ``delete()`` directly on a query builder.
To delete a document, pass a query filter to the ``where()`` method, sort the matching documents,
and call the ``limit()`` method to retrieve only the first document. Then, delete this matching
document by calling the ``delete()`` method.
Example
-------
This usage example performs the following actions:
- Uses the ``Movie`` Eloquent model to represent the ``movies`` collection in the
``sample_mflix`` database
- Deletes a document from the ``movies`` collection that matches a query filter
- Prints the number of deleted documents
The example calls the following methods on the ``Movie`` model:
- ``where()``: matches documents in which the value of the ``title`` field is ``"Quiz Show"``
- ``orderBy()``: sorts matched documents by their ascending ``_id`` values
- ``limit()``: retrieves only the first matching document
- ``delete()``: deletes the retrieved document
.. io-code-block::
:copyable: true
.. input:: ../includes/usage-examples/DeleteOneTest.php
:start-after: begin-delete-one
:end-before: end-delete-one
:language: php
:dedent:
.. output::
:language: console
:visible: false
Deleted documents: 1
.. include:: /includes/usage-examples/fact-edit-laravel-app.rst
.. tip::
To learn more about deleting documents with {+odm-short+}, see the `Deleting Models
<https://laravel.com/docs/{+laravel-docs-version+}/eloquent#deleting-models>`__ section of the
Laravel documentation.