From 6e3f309d910fd9974735c8bcda38c2782b28bd21 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Tue, 15 Jul 2025 16:10:33 +0300 Subject: [PATCH] Consistent spacing in Blade control structures --- helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.md b/helpers.md index 55215a1d31..88fc5b55c6 100644 --- a/helpers.md +++ b/helpers.md @@ -2511,7 +2511,7 @@ event(new UserRegistered($user)); The `fake` function resolves a [Faker](https://github.com/FakerPHP/Faker) singleton from the container, which can be useful when creating fake data in model factories, database seeding, tests, and prototyping views: ```blade -@for($i = 0; $i < 10; $i++) +@for ($i = 0; $i < 10; $i++)