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
e5432668
Commit
e5432668
authored
Jul 05, 2022
by
GuilhermeGz
Browse files
Merge branch 'master' of
https://github.com/GuilhermeGz/submeta
parents
c5ba1744
3e48f4d1
Changes
10
Show whitespace changes
Inline
Side-by-side
app/Http/Controllers/ProponenteController.php
View file @
e5432668
...
@@ -111,11 +111,15 @@ class ProponenteController extends Controller
...
@@ -111,11 +111,15 @@ class ProponenteController extends Controller
}
}
public
function
projetosEdital
(
$id
)
{
public
function
projetosEdital
(
$id
)
{
$edital
=
Evento
::
find
(
$id
);
$edital
=
Evento
::
find
(
$id
);
if
(
Auth
::
user
()
->
proponentes
!=
null
){
$projetos
=
Trabalho
::
where
(
'evento_id'
,
'='
,
$id
)
->
where
(
'proponente_id'
,
Auth
::
user
()
->
proponentes
->
id
)
->
orderBy
(
'titulo'
)
->
paginate
(
10
);
$projetos
=
Trabalho
::
where
(
'evento_id'
,
'='
,
$id
)
->
where
(
'proponente_id'
,
Auth
::
user
()
->
proponentes
->
id
)
->
orderBy
(
'titulo'
)
->
paginate
(
10
);
$hoje
=
Carbon
::
today
(
'America/Recife'
);
$hoje
=
Carbon
::
today
(
'America/Recife'
);
$hoje
=
$hoje
->
toDateString
();
$hoje
=
$hoje
->
toDateString
();
return
view
(
'proponente.projetosEdital'
)
->
with
([
'edital'
=>
$edital
,
'projetos'
=>
$projetos
,
'hoje'
=>
$hoje
]);
return
view
(
'proponente.projetosEdital'
)
->
with
([
'edital'
=>
$edital
,
'projetos'
=>
$projetos
,
'hoje'
=>
$hoje
]);
}
else
{
return
redirect
()
->
route
(
'inicial'
);
}
}
}
public
function
solicitarDesligamento
(
Request
$request
){
public
function
solicitarDesligamento
(
Request
$request
){
...
...
resources/views/administrador/analisarProposta.blade.php
View file @
e5432668
...
@@ -156,14 +156,10 @@
...
@@ -156,14 +156,10 @@
</
div
>
</
div
>
<
div
class
=
"col-sm-5"
>
<
div
class
=
"col-sm-5"
>
<
h5
>
{{
$participante
->
user
->
name
}}
</
h5
>
<
h5
>
{{
$participante
->
user
->
name
}}
</
h5
>
<
h
9
>
<
h
6
>
<
a
href
=
""
data
-
toggle
=
"modal"
<
a
href
=
""
data
-
toggle
=
"modal"
data
-
target
=
"#modalVizuParticipante
{
{$participante->id}
}
"
class
=
"button"
>
Informações
</
a
>
data
-
target
=
"#modalVizuParticipante
{
{$participante->id}
}
"
class
=
"button"
>
Informações
</
a
>
</
h9
>
</
h6
>
<
br
>
<
a
href
=
""
>
Remover
</
a
>
</
div
>
</
div
>
<!--
Modal
visualizar
informações
participante
-->
<!--
Modal
visualizar
informações
participante
-->
...
@@ -995,13 +991,13 @@
...
@@ -995,13 +991,13 @@
<
input
class
=
"col-md-1"
type
=
"radio"
id
=
"aprovado"
name
=
"statusProp"
<
input
class
=
"col-md-1"
type
=
"radio"
id
=
"aprovado"
name
=
"statusProp"
value
=
"aprovado"
required
value
=
"aprovado"
required
@
if
(
$trabalho
->
status
==
"aprovado"
)
checked
@
endif
>
@
if
(
$trabalho
->
status
==
"aprovado"
)
checked
@
endif
>
<
a
style
=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Recomendad
o
</
a
>
<
a
style
=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Recomendad
a
</
a
>
<
br
>
<
br
>
<
input
class
=
"col-md-1"
type
=
"radio"
id
=
"reprovado"
name
=
"statusProp"
<
input
class
=
"col-md-1"
type
=
"radio"
id
=
"reprovado"
name
=
"statusProp"
value
=
"reprovado"
required
value
=
"reprovado"
required
@
if
(
$trabalho
->
status
==
"reprovado"
)
checked
@
endif
>
@
if
(
$trabalho
->
status
==
"reprovado"
)
checked
@
endif
>
<
a
style
=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Não
Recomendad
o
</
a
>
<
a
style
=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Não
Recomendad
a
</
a
>
</
div
>
</
div
>
</
div
>
</
div
>
...
@@ -1579,7 +1575,7 @@
...
@@ -1579,7 +1575,7 @@
document
.
getElementById
(
"aprovado"
)
.
onclick
=
function
()
{
document
.
getElementById
(
"aprovado"
)
.
onclick
=
function
()
{
var
s
=
document
.
getElementById
(
"comentario"
);
var
s
=
document
.
getElementById
(
"comentario"
);
s
.
innerHTML
=
'Proposta cumpriu todos os requisitos estabelecidos no edital'
;
s
.
innerHTML
=
'Proposta cumpriu todos os requisitos estabelecidos no edital
.
'
;
};
};
document
.
getElementById
(
"reprovado"
)
.
onclick
=
function
()
{
document
.
getElementById
(
"reprovado"
)
.
onclick
=
function
()
{
var
s
=
document
.
getElementById
(
"comentario"
);
var
s
=
document
.
getElementById
(
"comentario"
);
...
...
resources/views/administrador/editar_user.blade.php
View file @
e5432668
resources/views/evento/formulario/participantes.blade.php
View file @
e5432668
...
@@ -20,17 +20,22 @@
...
@@ -20,17 +20,22 @@
<div
id=
"participante"
class=
"row"
>
<div
id=
"participante"
class=
"row"
>
@for($i = 0; $i
<
$
edital-
>
numParticipantes; $i++)
@for($i = 0; $i
<
$
edital-
>
numParticipantes; $i++)
<div
@
if
(!
isset
(
old
('
marcado
')[$
i
]))
hidden
@
endif
class=
"form-row mb-1 col-md-
3
"
style=
"margin-top: 10px"
id=
"part{{$i}}"
>
<div
@
if
(!
isset
(
old
('
marcado
')[$
i
]))
hidden
@
endif
class=
"form-row mb-1 col-md-
6
"
style=
"margin-top: 10px"
id=
"part{{$i}}"
>
<div
class=
"col-sm-
4
"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-
2
"
style=
"display: flex; align-items: center;"
>
<img
src=
"{{asset('img/icons/usuario.svg')}}"
style=
"width:60px"
alt=
""
>
<img
src=
"{{asset('img/icons/usuario.svg')}}"
style=
"width:60px"
alt=
""
>
</div>
</div>
<div
class=
"col-sm-8"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-10"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-12"
>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
@if(isset(old('marcado')[$i]))
@if(isset(old('marcado')[$i]))
@if(isset(old('name')[$i]))Nome: {{old('name')[$i]}} @else Discente {{$i+1}} @endif
@if(isset(old('name')[$i]))Nome: {{old('name')[$i]}} @else Discente {{$i+1}} @endif
@if(isset(old('nomePlanoTrabalho')[$i]))
<br>
Plano: {{old('nomePlanoTrabalho')[$i]}} @endif
@if(isset(old('nomePlanoTrabalho')[$i]))
<br>
Plano: {{old('nomePlanoTrabalho')[$i]}} @endif
@endif
@endif
</a>
</a>
<div
class=
"col-sm-5 pl-0"
style=
"margin-top: 10px; text-align: left;"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
" btn btn-danger"
style=
"font-size: 12px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Excluir
</button>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -359,8 +364,11 @@
...
@@ -359,8 +364,11 @@
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-6"
>
{{--
<div
class=
"col-6"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
" btn btn-danger"
style=
"font-size: 16px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Cancelar
</button>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
" btn btn-danger"
style=
"font-size: 16px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Cancelar
</button>
</div>
--}}
<div
class=
"col-6"
>
<button
data-dismiss=
"modal"
type=
"button"
class=
"btn btn-secondary float-left"
style=
"font-size: 16px"
>
Sair
</button>
</div>
</div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"guardar{{$i}}"
class=
"btn btn-success float-right"
style=
"font-size: 16px"
onclick=
"marcar({{$i}})"
>
Salvar
</button>
<button
data-dismiss=
"modal"
type=
"button"
id=
"guardar{{$i}}"
class=
"btn btn-success float-right"
style=
"font-size: 16px"
onclick=
"marcar({{$i}})"
>
Salvar
</button>
...
...
resources/views/projeto/editaFormulario/participantes.blade.php
View file @
e5432668
...
@@ -26,11 +26,12 @@
...
@@ -26,11 +26,12 @@
@endphp
@endphp
<div
@
if
(!$
participante
)
hidden
@
endif
class=
"form-row mb-1 col-md-
3
"
style=
"margin-top: 10px"
id=
"part{{$i}}"
>
<div
@
if
(!$
participante
)
hidden
@
endif
class=
"form-row mb-1 col-md-
6
"
style=
"margin-top: 10px"
id=
"part{{$i}}"
>
<div
class=
"col-sm-
4
"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-
2
"
style=
"display: flex; align-items: center;"
>
<img
src=
"{{asset('img/icons/usuario.svg')}}"
style=
"width:60px"
alt=
""
>
<img
src=
"{{asset('img/icons/usuario.svg')}}"
style=
"width:60px"
alt=
""
>
</div>
</div>
<div
class=
"col-sm-8"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-8"
style=
"display: flex; align-items: center;"
>
<div
class=
"col-sm-12"
>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
<a
href=
""
style=
""
class=
"justify-content-center"
data-toggle=
"modal"
data-target=
"#exampleModal{{$i}}"
id=
"nomePart{{$i+1}}"
>
@if($participante)
@if($participante)
@if(isset(old('name')[$i]))Nome: {{old('name')[$i]}} @else Nome: {{$participante->user->name}} @endif
@if(isset(old('name')[$i]))Nome: {{old('name')[$i]}} @else Nome: {{$participante->user->name}} @endif
...
@@ -39,6 +40,11 @@
...
@@ -39,6 +40,11 @@
Discente
Discente
@endif
@endif
</a>
</a>
<div
class=
"col-sm-5 pl-0"
style=
"margin-top: 10px; text-align: left;"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
" btn btn-danger"
style=
"font-size: 12px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Excluir
</button>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -353,7 +359,7 @@
...
@@ -353,7 +359,7 @@
@endcomponent
@endcomponent
</div>
</div>
<div
class=
"col-12"
style=
"margin-bottom: 10px"
>
<div
class=
"col-12"
style=
"margin-bottom: 10px"
>
<label>
Anexo (.p
f
d)
<span
style=
"color: red;font-weight: bold"
>
*
</span>
<label>
Anexo (.pd
f
)
<span
style=
"color: red;font-weight: bold"
>
*
</span>
@if($participante !=null
&&
$participante->planoTrabalho)
@if($participante !=null
&&
$participante->planoTrabalho)
...
@@ -377,8 +383,11 @@
...
@@ -377,8 +383,11 @@
@enderror
@enderror
</div>
</div>
{{--
<div
class=
"col-6"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
" btn btn-danger"
style=
"font-size: 16px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Excluir
</button>
</div>
--}}
<div
class=
"col-6"
>
<div
class=
"col-6"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"cancelar{{$i}}"
class=
"
btn btn-
danger
"
style=
"font-size: 16px"
onclick=
"desmarcar({{$i}})"
@
if
(
isset
(
old
('
marcado
')[$
i
+1]))
disabled
@
endif
>
Cancela
r
</button>
<button
data-dismiss=
"modal"
type=
"button"
class=
"btn btn-
secondary float-left
"
style=
"font-size: 16px"
>
Sai
r
</button>
</div>
</div>
<div
class=
"col-6"
>
<div
class=
"col-6"
>
<button
data-dismiss=
"modal"
type=
"button"
id=
"guardar{{$i}}"
class=
"btn btn-success float-right"
style=
"font-size: 16px"
onclick=
"marcar({{$i}})"
>
Salvar
</button>
<button
data-dismiss=
"modal"
type=
"button"
id=
"guardar{{$i}}"
class=
"btn btn-success float-right"
style=
"font-size: 16px"
onclick=
"marcar({{$i}})"
>
Salvar
</button>
...
@@ -408,8 +417,8 @@
...
@@ -408,8 +417,8 @@
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
<script>
function
limpa_formulário_cep
(
id
)
{
function
limpa_formulário_cep
(
id
)
{
//Limpa valores do formulário de cep.
//Limpa valores do formulário de cep.
...
@@ -482,5 +491,4 @@
...
@@ -482,5 +491,4 @@
}
}
};
};
</script>
</script>
resources/views/projeto/editaFormulario/proponente.blade.php
View file @
e5432668
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
<div
class=
"col-md-11"
>
<div
class=
"col-md-11"
>
<br>
<br>
<input
class=
"form-control @error('linkLattesEstudante') is-invalid @enderror"
type=
"text"
name=
"linkLattesEstudante"
<input
class=
"form-control @error('linkLattesEstudante') is-invalid @enderror"
type=
"text"
name=
"linkLattesEstudante"
readonly=
"readonly"
@
if
(
Auth
()
-
>
user()->proponentes != null
&&
Auth()->user()->proponentes->linkLattes != null)
@
if
(
Auth
()
-
>
user()->proponentes != null
&&
Auth()->user()->proponentes->linkLattes != null)
value="{{ Auth()->user()->proponentes->linkLattes }}"
value="{{ Auth()->user()->proponentes->linkLattes }}"
@else
@else
...
...
resources/views/projeto/formularioVisualizar/participantes2.blade.php
View file @
e5432668
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
</div>
</div>
<div
class=
"col-sm-5"
>
<div
class=
"col-sm-5"
>
<h5>
{{$participante->user->name}}
</h5>
<h5>
{{$participante->user->name}}
</h5>
<h5>
{{$participante->planoTrabalho->titulo}}
</h5>
<h9>
<h9>
<a
href=
""
data-toggle=
"modal"
data-target=
"#modalVizuParticipante{{$participante->id}}"
class=
"button"
>
Informações
</a>
<a
href=
""
data-toggle=
"modal"
data-target=
"#modalVizuParticipante{{$participante->id}}"
class=
"button"
>
Informações
</a>
</h9>
</h9>
...
@@ -53,4 +54,3 @@
...
@@ -53,4 +54,3 @@
</div>
</div>
<!--X Participantes X-->
<!--X Participantes X-->
resources/views/projeto/formularioVisualizar/resultado2.blade.php
View file @
e5432668
...
@@ -16,12 +16,12 @@
...
@@ -16,12 +16,12 @@
<div
class=
"col-md-3"
style=
"margin-top: 15px"
>
<div
class=
"col-md-3"
style=
"margin-top: 15px"
>
<input
class=
"col-md-1"
type=
"radio"
id=
"aprovado"
name=
"statusProp"
value=
"aprovado"
required
disabled
<input
class=
"col-md-1"
type=
"radio"
id=
"aprovado"
name=
"statusProp"
value=
"aprovado"
required
disabled
@
if
($
projeto-
>
status=="aprovado") checked @endif>
@
if
($
projeto-
>
status=="aprovado") checked @endif>
<a
style=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Recomendad
o
</a>
<a
style=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Recomendad
a
</a>
<br>
<br>
<input
class=
"col-md-1"
type=
"radio"
id=
"reprovado"
name=
"statusProp"
value=
"reprovado"
required
disabled
<input
class=
"col-md-1"
type=
"radio"
id=
"reprovado"
name=
"statusProp"
value=
"reprovado"
required
disabled
@
if
($
projeto-
>
status=="reprovado") checked @endif>
@
if
($
projeto-
>
status=="reprovado") checked @endif>
<a
style=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Não Recomendad
o
</a>
<a
style=
"color: #234B8B; font-weight: bold;font-size: 18px;"
>
Não Recomendad
a
</a>
</div>
</div>
</div>
</div>
</div>
</div>
...
...
resources/views/proponente/projetos.blade.php
View file @
e5432668
...
@@ -88,11 +88,12 @@
...
@@ -88,11 +88,12 @@
</
a
>
</
a
>
<
div
class
=
"dropdown-menu"
>
<
div
class
=
"dropdown-menu"
>
@
if
(
$hoje
<=
$projeto
->
evento
->
inicioProjeto
)
<
a
href
=
"{{ route('trabalho.editar', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
<
a
href
=
"{{ route('trabalho.editar', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
Editar
Editar
</
a
>
</
a
>
<
hr
class
=
"dropdown-hr"
>
<
hr
class
=
"dropdown-hr"
>
@
endif
@
if
(
$projeto
->
status
==
'aprovado'
)
@
if
(
$projeto
->
status
==
'aprovado'
)
<
a
href
=
"{{route('trabalho.trocaParticipante', ['evento_id' =>
$projeto->evento
->id, 'projeto_id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
<
a
href
=
"{{route('trabalho.trocaParticipante', ['evento_id' =>
$projeto->evento
->id, 'projeto_id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
...
@@ -109,9 +110,11 @@
...
@@ -109,9 +110,11 @@
Documentos
Complementares
Documentos
Complementares
</
a
>
</
a
>
<
hr
class
=
"dropdown-hr"
>
<
hr
class
=
"dropdown-hr"
>
@
if
(
$projeto
->
status
!=
'rascunho'
)
<
a
href
=
"{{ route('trabalho.show', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
<
a
href
=
"{{ route('trabalho.show', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
Visualizar
Visualizar
</
a
>
</
a
>
@
endif
<
hr
class
=
"dropdown-hr"
>
<
hr
class
=
"dropdown-hr"
>
<
a
href
=
"{{route('planos.listar', ['id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
<
a
href
=
"{{route('planos.listar', ['id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
...
...
resources/views/proponente/projetosEdital.blade.php
View file @
e5432668
...
@@ -108,11 +108,14 @@
...
@@ -108,11 +108,14 @@
<
img
src
=
"
{
{asset('img/icons/ellipsis-v-solid.svg')}
}
"
style
=
"width:8px"
>
<
img
src
=
"
{
{asset('img/icons/ellipsis-v-solid.svg')}
}
"
style
=
"width:8px"
>
</
a
>
</
a
>
<
div
class
=
"dropdown-menu"
>
<
div
class
=
"dropdown-menu"
>
@
if
(
$hoje
<=
$edital
->
inicioProjeto
)
<
a
href
=
"{{ route('trabalho.editar', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
<
a
href
=
"{{ route('trabalho.editar', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
Editar
Editar
</
a
>
</
a
>
<
hr
class
=
"dropdown-hr"
>
<
hr
class
=
"dropdown-hr"
>
@
endif
@
if
(
$projeto
->
status
==
'aprovado'
)
@
if
(
$projeto
->
status
==
'aprovado'
)
<
a
href
=
"{{route('trabalho.trocaParticipante', ['evento_id' =>
$projeto->evento
->id, 'projeto_id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
<
a
href
=
"{{route('trabalho.trocaParticipante', ['evento_id' =>
$projeto->evento
->id, 'projeto_id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center;"
>
Solicitar
Substituições
Solicitar
Substituições
...
@@ -130,10 +133,11 @@
...
@@ -130,10 +133,11 @@
</
a
>--
}}
</
a
>--
}}
<
hr
class
=
"dropdown-hr"
>
<
hr
class
=
"dropdown-hr"
>
@
if
(
$projeto
->
status
!=
'rascunho'
)
<
a
href
=
"{{ route('trabalho.show', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
<
a
href
=
"{{ route('trabalho.show', ['id' =>
$projeto->id
]) }}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
Visualizar
Visualizar
</
a
>
</
a
>
@
endif
<
hr
class
=
"dropdown-hr"
>
<
hr
class
=
"dropdown-hr"
>
<
a
href
=
"{{route('planos.listar', ['id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
<
a
href
=
"{{route('planos.listar', ['id' =>
$projeto->id
])}}"
class
=
"dropdown-item"
style
=
"text-align: center"
>
...
...
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