diff --git a/resources/views/proponente/projetos.blade.php b/resources/views/proponente/projetos.blade.php
index 86509b804495f3be2c9911707428cd1673f5dc4c..552945e98ac72f855637be4bfc7bf818d296af0e 100755
--- a/resources/views/proponente/projetos.blade.php
+++ b/resources/views/proponente/projetos.blade.php
@@ -87,7 +87,12 @@
{{ date('d-m-Y \à\s H:i\h', strtotime($projeto->updated_at)) }} |
@if($projeto->status !=null)
@if($projeto->status === "aprovado")
- Em Execução |
+ < !-- Não sei pq a ordem ta invertida, mas funciona -- >
+ @if( strtotime($projeto->updated_at) <= strtotime($projeto->fimProjeto))
+ Finalizado |
+ @else
+ Em Execução |
+ @endif
@else
{{$projeto->status}} |
@endif