Last active
April 11, 2017 19:25
-
-
Save bulfaitelo/8fe070b69b84224aafb57ee978b541af 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> | |
<head> | |
<title>Bullfaitelo Form test</title> | |
<!-- Latest compiled and minified CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class=”container”> | |
<h1>Lista de mensagens</h1> | |
<hr /> | |
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>Nome</th> | |
<th>Email</th> | |
<th>Mensagem</th> | |
</tr> | |
</thead> | |
<tbody> | |
@foreach($contatos as $row) | |
<tr> | |
<th scope="row">{{ $row->id }}</th> | |
<td>{{ $row->nome }}</td> | |
<td>{{ $row->email }}</td> | |
<td>{{ $row->mensagem }}</td> | |
</tr> | |
@endforeach | |
</tbody> | |
</table> | |
<a target="_blank" href="http://www.bulfaitelo.com.br/2017/04/tutorial-laravel-para-iniciantes-parte03.html"> Tutorial Laravel para iniciantes - Parte 03 [Configuração e manipulação do MySQL] </a> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment