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
5b579bc0
Commit
5b579bc0
authored
Aug 29, 2022
by
GuilhermeGz
Browse files
Ajuste na exibição de cpf do participante substituto
parent
257241f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
resources/views/administrador/vizualizarParticipante.blade.php
View file @
5b579bc0
...
...
@@ -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
>
...
...
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