Skip to content

Commit 9d3376b

Browse files
committed
Fix typo
1 parent f3408b4 commit 9d3376b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Next, we'll create our `users.blade.php` view:
5353
Users!
5454
@stop
5555

56-
Some of this syntax probably looks quite strange to you. That's because we're using Laravel's templating system: Blade. Blade is very fast, because it is simple a handful of regular expressions that are run against your templates to compile them to pure PHP. Blade provides powerful functionality like template inheritance, as well as some syntax sugar on typical PHP control structures such as `if` and `for`. Check out the [Blade documentation](/docs/templates) for more details.
56+
Some of this syntax probably looks quite strange to you. That's because we're using Laravel's templating system: Blade. Blade is very fast, because it is simply a handful of regular expressions that are run against your templates to compile them to pure PHP. Blade provides powerful functionality like template inheritance, as well as some syntax sugar on typical PHP control structures such as `if` and `for`. Check out the [Blade documentation](/docs/templates) for more details.
5757

5858
Now that we have our views, let's return it from our `/users` route. Instead of returning `Users!` from the route, return the view instead:
5959

0 commit comments

Comments
 (0)