Skip to content

Instantly share code, notes, and snippets.

@n3tr
Created January 27, 2013 10:05
Show Gist options
  • Save n3tr/4647658 to your computer and use it in GitHub Desktop.
Save n3tr/4647658 to your computer and use it in GitHub Desktop.
<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