Skip to content

Commit 0aa723a

Browse files
committed
Merge pull request laravel#284 from yuters/patch-1
Fix typo
2 parents 95b21a8 + 9d3376b commit 0aa723a

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)