Skip to content

Commit 6d8a96b

Browse files
[9.x] Add docs for eloquent quietly methods (#8108)
* add docs for eloquent quietly methods * Update eloquent.md * Update eloquent.md Co-authored-by: Taylor Otwell <[email protected]>
1 parent d8fbee0 commit 6d8a96b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

eloquent.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1519,3 +1519,9 @@ Sometimes you may wish to "save" a given model without dispatching any events. Y
15191519
$user->name = 'Victoria Faith';
15201520

15211521
$user->saveQuietly();
1522+
1523+
You may also "update", "delete", "soft delete", "restore", and "replicate" a given model without dispatching any events:
1524+
1525+
$user->deleteQuietly();
1526+
1527+
$user->restoreQuietly();

0 commit comments

Comments
 (0)