Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andrechavesg/e57776c4c4ba4fd368dcebc3f4de63aa to your computer and use it in GitHub Desktop.
Save andrechavesg/e57776c4c4ba4fd368dcebc3f4de63aa to your computer and use it in GitHub Desktop.
tiktok-mostra-page-wrapper
<div id="page-wrapper">
<div class="panel panel-default">
<div class="panel-heading">
Hover Rows
</div>
<!-- /.panel-heading -->
<div class="panel-body">
<div class="table-responsive">
<table class="table table-hover">
<tr>
<th>Nome</th>
<td>{{ funcionario.nome }}</td>
</tr>
<tr>
<th>Data de Nascimento</th>
<td>{{ funcionario.dataDeNascimento|date("d-m-Y") }}</td>
</tr>
<tr>
<th>Data de entrada</th>
<td>{{ funcionario.dataDeEntrada|date("d-m-Y") }}</td>
</tr>
<tr>
<th>Tempo na empresa</th>
<td>{{ funcionario.tempoNaEmpresa|date("%Y anos, %m meses, %d dias") }}</td>
</tr>
</table>
</div>
<!-- /.table-responsive -->
</div>
<!-- /.panel-body -->
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment