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
989e985e
Commit
989e985e
authored
Jun 29, 2020
by
Gabriel-31415
Browse files
merged carlos
parents
39fa8693
4b127467
Changes
5
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/TrabalhoController.php
View file @
989e985e
No preview for this file type
database/seeds/SubAreaSeeder.php
View file @
989e985e
...
@@ -1404,4 +1404,6 @@ class SubAreaSeeder extends Seeder
...
@@ -1404,4 +1404,6 @@ class SubAreaSeeder extends Seeder
]);
]);
}
}
}
}
resources/lang/pt-BR/validation.php
View file @
989e985e
...
@@ -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.'
,
...
...
resources/views/emails/submissaoTrabalho.blade.php
View file @
989e985e
...
@@ -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--}}
...
...
resources/views/evento/criarEvento.blade.php
View file @
989e985e
...
@@ -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>
...
...
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