From 86f7510a6c8da9646c6b043e2880a48ba2042c1a Mon Sep 17 00:00:00 2001 From: Sam Rayner Date: Mon, 22 May 2017 13:53:32 +0100 Subject: [PATCH] Correct wording around soft deletion Corrected to clarify that soft-deleted objects will not be affected by queries unless `.withSoftDeleted()` is used. --- 2.0/docs/fluent/model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2.0/docs/fluent/model.md b/2.0/docs/fluent/model.md index 7b24a36a..bafdfb1b 100644 --- a/2.0/docs/fluent/model.md +++ b/2.0/docs/fluent/model.md @@ -152,7 +152,7 @@ extension User: SoftDeletable { ### Including Deleted -When a model is soft deleted, it will be affected by any queries made with the Fluent query builder. +When a model is soft deleted, it will not be affected by any queries made with the Fluent query builder. To include soft deleted models, for instance if you want to restore them, use the `.withSoftDeleted()` method on the query builder.