Commit 608eb99f authored by Guilherme Silva's avatar Guilherme Silva
Browse files

Ajuste de path

parent 5f38e611
...@@ -72,7 +72,8 @@ class AdministradorController extends Controller ...@@ -72,7 +72,8 @@ class AdministradorController extends Controller
public function analisar(Request $request){ public function analisar(Request $request){
$evento = Evento::find($request->evento_id); $evento = Evento::find($request->evento_id);
$status = ['submetido', 'avaliado', 'aprovado', 'reprovado', 'corrigido']; $status = ['submetido', 'avaliado', 'aprovado', 'reprovado', 'corrigido'];
$withPath = '/usuarios/analisarProjetos?evento_id='.$evento->id; //$withPath = '/usuarios/analisarProjetos?evento_id='.$evento->id;
$withPath = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
if($request->column != null ) { if($request->column != null ) {
$status = [$request->column]; $status = [$request->column];
$withPath = '/usuarios/analisarProjetos/'.$request->column.'?evento_id='.$evento->id; $withPath = '/usuarios/analisarProjetos/'.$request->column.'?evento_id='.$evento->id;
......
...@@ -95,10 +95,11 @@ ...@@ -95,10 +95,11 @@
{{$participante->user->name}}; {{$participante->user->name}};
@endforeach @endforeach
</div> </div>
@if($trabalho->grande_area_id != null && $trabalho->area_id != null && $trabalho->sub_area_id != null)
<div class="col-md-12"> <div class="col-md-12">
<h6 style="color: #234B8B; font-weight: bold;font-size: 13px;">{{$trabalho->grandeArea->nome}} > {{$trabalho->area->nome}} > {{$trabalho->subArea->nome}}</h6> <h6 style="color: #234B8B; font-weight: bold;font-size: 13px;">{{$trabalho->grandeArea->nome}} > {{$trabalho->area->nome}} > {{$trabalho->subArea->nome}}</h6>
</div> </div>
@endif
</div> </div>
......
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