Skip to content

Instantly share code, notes, and snippets.

Created April 21, 2017 07:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/97ef26bbe581222ebd959564e4d5c123 to your computer and use it in GitHub Desktop.
Save anonymous/97ef26bbe581222ebd959564e4d5c123 to your computer and use it in GitHub Desktop.
<table class="table table-condensed table-hover table-striped">
<tbody>
<tr>
<th scope="col">№</th>
<th scope="col">ID</th>
<th scope="col">Название</th>
<th scope="col">Редактирование</th>
<th scope="col">Город</th>
<th scope="col">Адрес</th>
</tr>
@foreach($companies as $company)
<tr>
<td>{{ $loop->iteration }}</td>
<td>{{ $company->id }}</td>
<td style="font-size: 13pt;">{{ $company->name }}</td>
<td><a href="#" class="btn btn-primary" role="button">Edit</a> </td>
<td>{{ $company->city }}</td>
<td>{{ $company->address }}</td>
</tr>
@endforeach
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment