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
4dcc674c
Commit
4dcc674c
authored
May 11, 2023
by
José Fernando Mendes da Costa
Browse files
ordena pelo id
parent
d54053ec
Changes
1
Show whitespace changes
Inline
Side-by-side
app/User.php
View file @
4dcc674c
...
@@ -89,7 +89,7 @@ class User extends Authenticatable implements MustVerifyEmail
...
@@ -89,7 +89,7 @@ class User extends Authenticatable implements MustVerifyEmail
return
$this
->
hasOne
(
'App\AdministradorResponsavel'
);
return
$this
->
hasOne
(
'App\AdministradorResponsavel'
);
}
}
public
function
participantes
(){
public
function
participantes
(){
return
$this
->
hasMany
(
'App\Participante'
);
return
$this
->
hasMany
(
'App\Participante'
)
->
orderBy
(
'id'
,
'asc'
)
;
}
}
public
function
avaliadors
(){
public
function
avaliadors
(){
return
$this
->
hasOne
(
'App\Avaliador'
);
return
$this
->
hasOne
(
'App\Avaliador'
);
...
...
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