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
pad-upe
Commits
a9fdd540
Commit
a9fdd540
authored
Aug 04, 2023
by
PedroLopesUPE
Browse files
Bug fix: bad method call
parent
f91b17c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
routes/web.php
View file @
a9fdd540
...
...
@@ -103,7 +103,7 @@ Route::prefix('/avaliador')->group(function () {
Route
::
delete
(
'/delete/{id}'
,
[
AvaliadorController
::
class
,
'destroy'
])
->
name
(
'avaliador_delete'
);
Route
::
get
(
'/relatorio'
,
[
AvaliadorController
::
class
,
'relatorio'
])
->
name
(
'avaliador_relatorio'
);
Route
::
get
(
'/relatorio/{id}'
,
[
PadController
::
class
,
'relatorio'
])
->
name
(
'pad_relatório'
);
Route
::
get
(
'/relatorio/{id}/pdf'
,
[
PadController
::
class
,
'Generate
_
PDF'
])
->
name
(
'pad_relatório_pdf'
);
Route
::
get
(
'/relatorio/{id}/pdf'
,
[
PadController
::
class
,
'GeneratePDF'
])
->
name
(
'pad_relatório_pdf'
);
});
Route
::
prefix
(
'/user'
)
->
group
(
function
()
{
...
...
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