Skip to content

Instantly share code, notes, and snippets.

@alejandrofloresm
Last active May 2, 2019 20:25
Show Gist options
  • Select an option

  • Save alejandrofloresm/7b6d7e0d3cd1bf156682d99fded1db11 to your computer and use it in GitHub Desktop.

Select an option

Save alejandrofloresm/7b6d7e0d3cd1bf156682d99fded1db11 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Zoológicos</title>
<meta name="description" content="">
<meta name="author" content="">
</head>
<body>
<h1>Zoológicos</h1>
<table>
<thead>
<tr>
<th>Id</th>
<th>Nombre</th>
<th>Ciudad</th>
<th>País</th>
<th>Tamaño</th>
<th>Presupuesto</th>
</tr>
</thead>
<tbody>
@foreach($zoos as $zoo)
<tr>
<td>{{ $zoo->id }}</td>
<td>{{ $zoo->name }}</td>
<td>{{ $zoo->city }}</td>
<td>{{ $zoo->country }}</td>
<td>{{ $zoo->size }}</td>
<td>{{ $zoo->annual_budget }}</td>
</tr>
@endforeach
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment