Created
September 5, 2012 15:22
-
-
Save mpmont/3638317 to your computer and use it in GitHub Desktop.
blade template system example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if ( $message == 'success' ) | |
It was a success! | |
@elseif ( $message == 'error' ) | |
An error occurred. | |
@else | |
Did it work? | |
@endif | |
@foreach ($comments as $comment) | |
The comment body is {{ $comment->body }}. | |
@endforeach |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment