From ba4502d70d0d901c7620b49a5dc9e5c0bcbec114 Mon Sep 17 00:00:00 2001 From: Samiullah Sediqzada Date: Wed, 15 Oct 2025 11:24:10 +0430 Subject: [PATCH 1/2] Add resove to reserved keywords in blade --- blade.md | 1 + 1 file changed, 1 insertion(+) diff --git a/blade.md b/blade.md index 6579f3acf7..5a7ff05d23 100644 --- a/blade.md +++ b/blade.md @@ -1215,6 +1215,7 @@ By default, some keywords are reserved for Blade's internal use in order to rend - `data` - `render` +- `resolve` - `resolveView` - `shouldRender` - `view` From 91bad8084e6c364a88c00f46cec22d5d9458fdb4 Mon Sep 17 00:00:00 2001 From: Samiullah Sediqzada Date: Sat, 8 Nov 2025 10:17:41 +0430 Subject: [PATCH 2/2] fix incorrect fluent string doesntContain example in documentation" --- strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings.md b/strings.md index edfe6f69a9..c5d425f6e4 100644 --- a/strings.md +++ b/strings.md @@ -2342,7 +2342,7 @@ use Illuminate\Support\Str; $doesntContain = Str::of('This is my name')->doesntContain('MY', ignoreCase: true); -// true +// false ```