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 ...@@ -1404,4 +1404,6 @@ class SubAreaSeeder extends Seeder
]); ]);
} }
} }
...@@ -12,7 +12,7 @@ return [ ...@@ -12,7 +12,7 @@ return [
*/ */
'accepted' => ':Attribute deve ser aceito.', 'accepted' => ':Attribute deve ser aceito.',
'active_url' => ':Attribute não é uma URL válida.', '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.', 'after_or_equal' => ':attribute deve ser uma data posterior ou igual a:date.',
'alpha' => ':Attribute deve conter somente letras.', 'alpha' => ':Attribute deve conter somente letras.',
'alpha_dash' => ':Attribute deve conter letras, números e traços.', 'alpha_dash' => ':Attribute deve conter letras, números e traços.',
......
...@@ -8,7 +8,14 @@ ...@@ -8,7 +8,14 @@
@if($user->proponentes->id == $trabalho->proponente_id) @if($user->proponentes->id == $trabalho->proponente_id)
{{-- Usuario proponente--}} {{-- Usuario proponente--}}
<h2>Olá, {{ $user->name }} </h2> <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 @endif
@else @else
{{-- Usuario participante--}} {{-- Usuario participante--}}
......
...@@ -102,7 +102,17 @@ ...@@ -102,7 +102,17 @@
@error('inicioSubmissao') @error('inicioSubmissao')
<span class="invalid-feedback" role="alert"> <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> </span>
@enderror @enderror
</div> </div>
...@@ -112,7 +122,7 @@ ...@@ -112,7 +122,7 @@
@error('fimSubmissao') @error('fimSubmissao')
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime(old('inicioSubmissao'))) . '.' }}</strong> <strong>{{ $message }}</strong>
</span> </span>
@enderror @enderror
</div> </div>
...@@ -125,7 +135,7 @@ ...@@ -125,7 +135,7 @@
@error('inicioRevisao') @error('inicioRevisao')
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong> <strong>{{ $message }}</strong>
</span> </span>
@enderror @enderror
</div> </div>
...@@ -135,7 +145,7 @@ ...@@ -135,7 +145,7 @@
@error('fimRevisao') @error('fimRevisao')
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime( old('inicioRevisao') )) . '.' }}</strong> <strong>{{ $message }}</strong>
</span> </span>
@enderror @enderror
</div> </div>
...@@ -148,7 +158,7 @@ ...@@ -148,7 +158,7 @@
@error('resultado_preliminar') @error('resultado_preliminar')
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong> <strong>{{ $message }}</strong>
</span> </span>
@enderror @enderror
</div> </div>
...@@ -158,7 +168,7 @@ ...@@ -158,7 +168,7 @@
@error('inicio_recurso') @error('inicio_recurso')
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong> <strong>{{ $message }}</strong>
</span> </span>
@enderror @enderror
</div> </div>
...@@ -171,7 +181,7 @@ ...@@ -171,7 +181,7 @@
@error('fim_recurso') @error('fim_recurso')
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong> <strong>{{ $message }}</strong>
</span> </span>
@enderror @enderror
</div> </div>
...@@ -182,7 +192,7 @@ ...@@ -182,7 +192,7 @@
@error('resultado_final') @error('resultado_final')
<span class="invalid-feedback" role="alert"> <span class="invalid-feedback" role="alert">
<strong>{{ $message . date('d/m/Y', strtotime($ontem ?? '')) . '.' }}</strong> <strong>{{ $message }}</strong>
</span> </span>
@enderror @enderror
</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