Created
February 1, 2014 18:25
-
-
Save LeShadow/8756333 to your computer and use it in GitHub Desktop.
This is an example of a simple blade view
This file contains 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
@section('content') | |
@if (count($sets) == 0) | |
<p>There are no sets defined yet!</p> | |
@else | |
@foreach ($sets as $set) | |
<p>{{ $set->name }}</p> | |
@endforeach | |
@endif | |
@stop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment