Commit 538466ac authored by GuilhermeGz's avatar GuilhermeGz
Browse files

Adicionada ordenação por nome do avaliador na avaliação de relatórios

parent 29114ae2
...@@ -631,7 +631,7 @@ ...@@ -631,7 +631,7 @@
</div> </div>
@php @php
$avaliacoesId = \App\AvaliacaoRelatorio::where("arquivo_id",$participante->planoTrabalho->id)->where("tipo",$tipoTemp)->pluck('user_id'); $avaliacoesId = \App\AvaliacaoRelatorio::where("arquivo_id",$participante->planoTrabalho->id)->where("tipo",$tipoTemp)->pluck('user_id');
$avalProjeto = \App\User::whereNotIn('id', $avaliacoesId)->where('tipo','avaliador')->get(); $avalProjeto = \App\User::whereNotIn('id', $avaliacoesId)->where('tipo','avaliador')->orderBy('name')->get();
@endphp @endphp
<select name="avaliadores_{{$participante->planoTrabalho->id}}_id[]" multiple <select name="avaliadores_{{$participante->planoTrabalho->id}}_id[]" multiple
......
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