Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
b5bc8e85
Unverified
Commit
b5bc8e85
authored
Jun 28, 2020
by
Gabriel Antônio da Silva
Committed by
GitHub
Jun 28, 2020
Browse files
Merge pull request #53 from lmts-ufape/beta
Merge carlos
parents
39fa8693
989e985e
Changes
5
Show whitespace changes
Inline
Side-by-side
app/Http/Controllers/TrabalhoController.php
View file @
b5bc8e85
No preview for this file type
database/seeds/SubAreaSeeder.php
View file @
b5bc8e85
...
...
@@ -1404,4 +1404,6 @@ class SubAreaSeeder extends Seeder
]);
}
}
resources/lang/pt-BR/validation.php
View file @
b5bc8e85
...
...
@@ -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.'
,
...
...
resources/views/emails/submissaoTrabalho.blade.php
View file @
b5bc8e85
...
...
@@ -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--}}
...
...
resources/views/evento/criarEvento.blade.php
View file @
b5bc8e85
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment