Commit 91b462f4 authored by carlos's avatar carlos
Browse files

adicionar datas de resultado preeliminar, resultado final, inicio e fim de recurso

parent 9c91b6af
...@@ -19,6 +19,10 @@ ...@@ -19,6 +19,10 @@
<tr> <tr>
<th scope="col">Nome do Edital</th> <th scope="col">Nome do Edital</th>
<th scope="col">Data de Criação</th> <th scope="col">Data de Criação</th>
<th scope="col">Resultado Preliminar</th>
<th scope="col">Início do Recurso</th>
<th scope="col">Fim do Recurso</th>
<th scope="col">Resultado Final</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
</tr> </tr>
</thead> </thead>
...@@ -31,6 +35,10 @@ ...@@ -31,6 +35,10 @@
</a> </a>
</td> </td>
<td>{{ date('d/m/Y', strtotime($evento->created_at)) }}</td> <td>{{ date('d/m/Y', strtotime($evento->created_at)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->resultado_preliminar)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->inicio_recurso)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->fim_recurso)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->resultado_final)) }}</td>
<td> <td>
@if(auth()->user()->id == $evento->criador_id) @if(auth()->user()->id == $evento->criador_id)
<div class="btn-group dropright dropdown-options"> <div class="btn-group dropright dropdown-options">
......
...@@ -17,9 +17,11 @@ ...@@ -17,9 +17,11 @@
<thead> <thead>
<tr> <tr>
<th scope="col">Nome do Edital</th> <th scope="col">Nome do Edital</th>
<th scope="col">Inicio da Submissão</th> <th scope="col">Início da Submissão</th>
<th scope="col">Fim da Submissão</th> <th scope="col">Fim da Submissão</th>
<th scope="col">Resultado Preliminar</th> <th scope="col">Resultado Preliminar</th>
<th scope="col">Início do Recurso</th>
<th scope="col">Fim do Recurso</th>
<th scope="col">Resultado Final</th> <th scope="col">Resultado Final</th>
<th scope="col">Baixar edital</th> <th scope="col">Baixar edital</th>
<th scope="col">Opção</th> <th scope="col">Opção</th>
...@@ -36,6 +38,8 @@ ...@@ -36,6 +38,8 @@
<td>{{ date('d/m/Y', strtotime($evento->inicioSubmissao)) }}</td> <td>{{ date('d/m/Y', strtotime($evento->inicioSubmissao)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->fimSubmissao)) }}</td> <td>{{ date('d/m/Y', strtotime($evento->fimSubmissao)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->resultado_preliminar)) }}</td> <td>{{ date('d/m/Y', strtotime($evento->resultado_preliminar)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->inicio_recurso)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->fim_recurso)) }}</td>
<td>{{ date('d/m/Y', strtotime($evento->resultado_final)) }}</td> <td>{{ date('d/m/Y', strtotime($evento->resultado_final)) }}</td>
<td style="text-align: center"> <td style="text-align: center">
<a href="{{ route('baixar.edital', ['id' => $evento->id]) }}"> <a href="{{ route('baixar.edital', ['id' => $evento->id]) }}">
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment