Last active
May 2, 2019 20:25
-
-
Save alejandrofloresm/7b6d7e0d3cd1bf156682d99fded1db11 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
| <!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