Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
bac7f8fb
Unverified
Commit
bac7f8fb
authored
2 years ago
by
GuilhermeGz
Committed by
GitHub
2 years ago
Browse files
Options
Download
Plain Diff
Merge pull request #597 from GuilhermeGz/master
Ajuste na exibição de cpf do participante substituto
parents
257241f6
5b579bc0
master
carl-branch
dependabot/composer/symfony/http-kernel-4.4.50
dependabot/npm_and_yarn/decode-uri-component-0.2.2
dependabot/npm_and_yarn/express-4.18.2
dependabot/npm_and_yarn/json5-and-json5-2.2.3
dependabot/npm_and_yarn/loader-utils-and-webpack-cli-1.4.2
dependabot/npm_and_yarn/minimist-and-mkdirp-1.2.8
dependabot/npm_and_yarn/qs-and-express-6.11.0
excluir_projeto_submetido
updates_mar
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
resources/views/administrador/vizualizarParticipante.blade.php
+7
-7
...rces/views/administrador/vizualizarParticipante.blade.php
with
7 additions
and
7 deletions
+7
-7
resources/views/administrador/vizualizarParticipante.blade.php
View file @
bac7f8fb
...
...
@@ -335,13 +335,13 @@
<
div
class
=
"row"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'CEP'
])
<
input
type
=
"text"
class
=
"form-control cep"
value
=
"
{
{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->cep}
}
"
name
=
"cep"
placeholder
=
"CEP"
disabled
/>
<
input
type
=
"text"
class
=
"form-control cep"
value
=
"{{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->cep
?? ''
}}"
name
=
"cep"
placeholder
=
"CEP"
disabled
/>
@
endcomponent
</
div
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.select'
,
[
'label'
=>
'Estado'
])
<
select
name
=
"uf"
id
=
"estado"
class
=
"form-control"
style
=
"visibility: visible"
disabled
>
<
option
value
=
"
{
{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->uf}
}
"
selected
>
{{
$subs
->
participanteSubstituto
()
->
withTrashed
()
->
first
()
->
user
->
endereco
->
uf
}}
</
option
>
<
option
value
=
"{{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->uf
?? ''
}}"
selected
>
{{
$subs
->
participanteSubstituto
()
->
withTrashed
()
->
first
()
->
user
->
endereco
->
uf
??
''
}}
</
option
>
</
select
>
@
endcomponent
</
div
>
...
...
@@ -349,24 +349,24 @@
<
div
class
=
"row"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Cidade'
])
<
input
type
=
"text"
class
=
"form-control"
value
=
"
{
{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->cidade}
}
"
name
=
"cidade"
placeholder
=
"Cidade"
maxlength
=
"50"
id
=
"cidade
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
disabled
/>
<
input
type
=
"text"
class
=
"form-control"
value
=
"{{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->cidade
?? ''
}}"
name
=
"cidade"
placeholder
=
"Cidade"
maxlength
=
"50"
id
=
"cidade{{$subs->participanteSubstituto()->withTrashed()->first()->id
?? ''
}}"
disabled
/>
@
endcomponent
</
div
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Bairro'
])
<
input
type
=
"text"
class
=
"form-control"
value
=
"
{
{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->bairro}
}
"
name
=
"bairro"
placeholder
=
"Bairro"
maxlength
=
"50"
id
=
"bairro
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
disabled
/>
<
input
type
=
"text"
class
=
"form-control"
value
=
"{{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->bairro
?? ''
}}"
name
=
"bairro"
placeholder
=
"Bairro"
maxlength
=
"50"
id
=
"bairro
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
disabled
/>
@
endcomponent
</
div
>
</
div
>
<
div
class
=
"row"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Rua'
])
<
input
type
=
"text"
class
=
"form-control"
value
=
"
{
{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->rua}
}
"
name
=
"rua"
placeholder
=
"Rua"
maxlength
=
"100"
id
=
"rua
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
disabled
/>
<
input
type
=
"text"
class
=
"form-control"
value
=
"{{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->rua
?? ''
}}"
name
=
"rua"
placeholder
=
"Rua"
maxlength
=
"100"
id
=
"rua
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
disabled
/>
@
endcomponent
</
div
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Número'
])
<
input
type
=
"text"
class
=
"form-control"
value
=
"
{
{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->numero}
}
"
name
=
"numero"
placeholder
=
"Número"
disabled
/>
<
input
type
=
"text"
class
=
"form-control"
value
=
"{{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->numero
?? ''
}}"
name
=
"numero"
placeholder
=
"Número"
disabled
/>
@
endcomponent
</
div
>
</
div
>
...
...
@@ -374,7 +374,7 @@
<
div
class
=
"col-12"
>
<
div
class
=
"form-group"
>
<
label
class
=
" control-label"
for
=
"firstname"
>
Complemento
</
label
>
<
input
type
=
"text"
class
=
"form-control"
value
=
"
{
{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->complemento}
}
"
name
=
"complemento"
placeholder
=
"Complemento"
maxlength
=
"75"
id
=
"complemento
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
disabled
/>
<
input
type
=
"text"
class
=
"form-control"
value
=
"{{$subs->participanteSubstituto()->withTrashed()->first()->user->endereco->complemento
?? ''
}}"
name
=
"complemento"
placeholder
=
"Complemento"
maxlength
=
"75"
id
=
"complemento
{
{$subs->participanteSubstituto()->withTrashed()->first()->id}
}
"
disabled
/>
</
div
>
</
div
>
</
div
>
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help