Unverified Commit b5bc8e85 authored by Gabriel Antônio da Silva's avatar Gabriel Antônio da Silva Committed by GitHub
Browse files

Merge pull request #53 from lmts-ufape/beta

Merge carlos
parents 39fa8693 989e985e
......@@ -1404,4 +1404,6 @@ class SubAreaSeeder extends Seeder
]);
}
}
......@@ -12,7 +12,7 @@ return [
*/
'accepted' => ':Attribute deve ser aceito.',
'active_url' => ':Attribute não é uma URL válida.',
'after' => ':Attribute deve ser uma data depois de ',
'after' => ':Attribute deve ser uma data depois de :date',
'after_or_equal' => ':attribute deve ser uma data posterior ou igual a:date.',
'alpha' => ':Attribute deve conter somente letras.',
'alpha_dash' => ':Attribute deve conter letras, números e traços.',
......
......@@ -8,7 +8,14 @@
@if($user->proponentes->id == $trabalho->proponente_id)
{{-- Usuario proponente--}}
<h2>Olá, {{ $user->name }} </h2>
<h4>Seu trabalho {{ $trabalho->titulo }} foi submetido com sucesso no Edital {{ $evento->nome }} </h4>
<br>
<h4>Seu projeto intitulado {{ $trabalho->titulo }} foi submetido com sucesso ao Edital {{ $evento->nome }} </h4>
<br>
<h4>
Atenciosamente,
<br>
Equipe submeta.
</h4>
@endif
@else
{{-- Usuario participante--}}
......
......@@ -102,7 +102,17 @@
@error('inicioSubmissao')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong>
<strong>
@if ($message != null)
@for ($i = 0; $i < 9; $i++)
@if ($i < 8)
{{ explode(" ", $message)[$i] }}
@else
{{ date('d/m/Y', strtotime(explode(" ", $message)[$i])) }}
@endif
@endfor
@endif
</strong>
</span>
@enderror
</div>
......@@ -112,7 +122,7 @@
@error('fimSubmissao')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime(old('inicioSubmissao'))) . '.' }}</strong>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
......@@ -125,7 +135,7 @@
@error('inicioRevisao')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
......@@ -135,7 +145,7 @@
@error('fimRevisao')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime( old('inicioRevisao') )) . '.' }}</strong>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
......@@ -148,7 +158,7 @@
@error('resultado_preliminar')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
......@@ -158,7 +168,7 @@
@error('inicio_recurso')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
......@@ -171,7 +181,7 @@
@error('fim_recurso')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong>
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
......@@ -182,7 +192,7 @@
@error('resultado_final')
<span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong>
<strong>{{ $message }}</strong>
</span>
@enderror
</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