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
2f4f40ff
Unverified
Commit
2f4f40ff
authored
Aug 12, 2022
by
GuilhermeGz
Committed by
GitHub
Aug 12, 2022
Browse files
Merge branch 'lmtsufape:master' into master
parents
e357d519
6111c77a
Changes
3
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/AdministradorController.php
View file @
2f4f40ff
...
...
@@ -83,11 +83,8 @@ class AdministradorController extends Controller
->
whereIn
(
'status'
,
$status
)
->
pluck
(
'area_id'
);
$trabalhos
=
Trabalho
::
where
(
'evento_id'
,
$evento
->
id
)
->
whereIn
(
'status'
,
$status
)
->
orderBy
(
'titulo'
)
->
paginate
(
10
);
$trabalhos
=
$evento
->
trabalhos
->
whereNotIn
(
'status'
,
'rascunho'
)
->
sortBy
(
'titulo'
);
$grandesAreas
=
GrandeArea
::
whereIn
(
'id'
,
$aux
)
->
get
();
$areas
=
Area
::
whereIn
(
'id'
,
$idArea
)
->
get
();
...
...
resources/views/administrador/analisar.blade.php
View file @
2f4f40ff
...
...
@@ -113,18 +113,6 @@
@
endforeach
</
div
>
<
div
class
=
"row justify-content-center"
>
<
div
class
=
"col-md-11"
>
<
br
>
{{
$trabalhos
->
appends
([
'evento_id'
=>
$evento
->
id
])
->
links
()
}}
</
div
>
</
div
>
@
endsection
@
section
(
'javascript'
)
...
...
resources/views/administrador/usersAdmin.blade.php
View file @
2f4f40ff
...
...
@@ -65,7 +65,7 @@
<
a
href
=
"{{route('admin.user.edit',
$user->id
)}}"
class
=
"dropdown-item text-center"
>
Editar
</
a
>
<
hr
class
=
"dropdown-hr"
>
<!--
<
hr
class
=
"dropdown-hr"
>
<
form
method
=
"POST"
action
=
"{{route('admin.user.destroy',
$user->id
)}}"
>
{{
csrf_field
()
}}
<
button
type
=
"submit"
class
=
"dropdown-item dropdown-item-delete text-center"
>
...
...
@@ -73,7 +73,7 @@
Deletar
</
button
>
</
form
>
</
form
>
-->
</
div
>
</
div
>
</
td
>
...
...
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