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
bac7f8fb
Unverified
Commit
bac7f8fb
authored
Aug 29, 2022
by
GuilhermeGz
Committed by
GitHub
Aug 29, 2022
Browse files
Merge pull request #597 from GuilhermeGz/master
Ajuste na exibição de cpf do participante substituto
parents
257241f6
5b579bc0
Changes
1
Show whitespace changes
Inline
Side-by-side
resources/views/administrador/vizualizarParticipante.blade.php
View file @
bac7f8fb
...
@@ -335,13 +335,13 @@
...
@@ -335,13 +335,13 @@
<
div
class
=
"row"
>
<
div
class
=
"row"
>
<
div
class
=
"col-6"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'CEP'
])
@
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
@
endcomponent
</
div
>
</
div
>
<
div
class
=
"col-6"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.select'
,
[
'label'
=>
'Estado'
])
@
component
(
'componentes.select'
,
[
'label'
=>
'Estado'
])
<
select
name
=
"uf"
id
=
"estado"
class
=
"form-control"
style
=
"visibility: visible"
disabled
>
<
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
>
</
select
>
@
endcomponent
@
endcomponent
</
div
>
</
div
>
...
@@ -349,24 +349,24 @@
...
@@ -349,24 +349,24 @@
<
div
class
=
"row"
>
<
div
class
=
"row"
>
<
div
class
=
"col-6"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Cidade'
])
@
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
@
endcomponent
</
div
>
</
div
>
<
div
class
=
"col-6"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Bairro'
])
@
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
@
endcomponent
</
div
>
</
div
>
</
div
>
</
div
>
<
div
class
=
"row"
>
<
div
class
=
"row"
>
<
div
class
=
"col-6"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Rua'
])
@
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
@
endcomponent
</
div
>
</
div
>
<
div
class
=
"col-6"
>
<
div
class
=
"col-6"
>
@
component
(
'componentes.input'
,
[
'label'
=>
'Número'
])
@
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
@
endcomponent
</
div
>
</
div
>
</
div
>
</
div
>
...
@@ -374,7 +374,7 @@
...
@@ -374,7 +374,7 @@
<
div
class
=
"col-12"
>
<
div
class
=
"col-12"
>
<
div
class
=
"form-group"
>
<
div
class
=
"form-group"
>
<
label
class
=
" control-label"
for
=
"firstname"
>
Complemento
</
label
>
<
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
>
</
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