Created
January 27, 2013 10:05
-
-
Save n3tr/4647658 to your computer and use it in GitHub Desktop.
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
<table> | |
<caption>Caption</caption> | |
<thead> | |
<tr> | |
<th>Code</th> | |
<th>Title</th> | |
<th>Credit</th> | |
<th>Description</th> | |
</tr> | |
</thead> | |
<tbody> | |
@foreach ($localcourses as $course) | |
<tr> | |
<td>{{ $course->code }}</td> | |
<td>{{ $course->title }}</td> | |
<td>{{ $course->credit }}</td> | |
<td>{{ $course->description }}</td> | |
</tr> | |
@endforeach | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment