diff --git a/resources/views/avaliacaoRelatorio/avaliacao.blade.php b/resources/views/avaliacaoRelatorio/avaliacao.blade.php
index 13f9b0562eeda6d1e4a3c4385475397ca883b6b4..e534b70d15e14425a961e91255e6894b920dd95c 100644
--- a/resources/views/avaliacaoRelatorio/avaliacao.blade.php
+++ b/resources/views/avaliacaoRelatorio/avaliacao.blade.php
@@ -3,7 +3,12 @@
@if ($arquivo->trabalho->evento->numParticipantes != 0)
Discente:
- {{\App\Participante::find($arquivo->participanteId)->user->name}}
+ @if(\App\Participante::find($arquivo->participanteId))
+ {{\App\Participante::find($arquivo->participanteId)->user->name}}
+ @else
+ {{\App\Participante::withTrashed()->find($arquivo->participanteId)->user->name}}
+ @endif
+
@else
Proponente:
{{$arquivo->trabalho->proponente->user->name}}