diff --git a/context.md b/context.md index 99eeaf19fa..76bd2d01bf 100644 --- a/context.md +++ b/context.md @@ -250,7 +250,7 @@ $data = Context::all(); ### Determining Item Existence -You may use the `has` method to determine if the context has any value stored for the given key: +You may use the `has` and `missing` methods to determine if the context has any value stored for the given key: ```php use Illuminate\Support\Facades\Context; @@ -258,6 +258,10 @@ use Illuminate\Support\Facades\Context; if (Context::has('key')) { // ... } + +if (Context::missing('key')) { + // ... +} ``` The `has` method will return `true` regardless of the value stored. So, for example, a key with a `null` value will be considered present: