This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/resources/views/sbadmindemo/widgets/table.blade.php
2016-10-14 17:59:25 +11:00

26 lines
407 B
PHP

<table class="table {{ $class }}">
<thead>
<tr>
<th>Name</th>
<th>Email</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>John</td>
<td>john@gmail.com</td>
<td>London, UK</td>
</tr>
<tr>
<td>Andy</td>
<td>andygmail.com</td>
<td>Merseyside, UK</td>
</tr>
<tr>
<td>Frank</td>
<td>frank@gmail.com</td>
<td>Southampton, UK</td>
</tr>
</tbody>
</table>