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
eed64155
"resources/views/git@sites.upe.br:walter.felipe/submeta.git" did not exist on "619606e85fc758493494ebba2432ee037dd77855"
Commit
eed64155
authored
Jul 18, 2022
by
alissonalbuquerque
Browse files
add endpoint
parent
5fbe3424
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/Dimensao/Tabelas/Ensino/EnsinoAulaController.php
View file @
eed64155
...
@@ -12,6 +12,12 @@ use Illuminate\Support\Facades\Validator;
...
@@ -12,6 +12,12 @@ use Illuminate\Support\Facades\Validator;
class
EnsinoAulaController
extends
Controller
class
EnsinoAulaController
extends
Controller
{
{
public
function
index
(
$user_pad_id
)
{
return
$user_pad_id
;
}
/**
/**
* Show the form for creating a new resource.
* Show the form for creating a new resource.
*
*
...
...
routes/web.php
View file @
eed64155
...
@@ -131,6 +131,7 @@ Route::prefix('/pad/dimensao/ensino/aulas')->group(function () {
...
@@ -131,6 +131,7 @@ Route::prefix('/pad/dimensao/ensino/aulas')->group(function () {
Route
::
post
(
'/validate'
,
[
EnsinoAulaController
::
class
,
'ajaxValidation'
])
->
name
(
'ensino_aula_validate'
);
Route
::
post
(
'/validate'
,
[
EnsinoAulaController
::
class
,
'ajaxValidation'
])
->
name
(
'ensino_aula_validate'
);
Route
::
delete
(
'/delete/{id}'
,
[
EnsinoAulaController
::
class
,
'delete'
])
->
name
(
'ensino_aula_delete'
);
Route
::
delete
(
'/delete/{id}'
,
[
EnsinoAulaController
::
class
,
'delete'
])
->
name
(
'ensino_aula_delete'
);
Route
::
get
(
'/index/{id}'
,
[
EnsinoAulaController
::
class
,
'index'
])
->
name
(
'ensino_aula_index'
);
Route
::
get
(
'/edit/{id?}'
,
[
EnsinoAulaController
::
class
,
'edit'
])
->
name
(
'view_ensino_aula_update'
);
Route
::
get
(
'/edit/{id?}'
,
[
EnsinoAulaController
::
class
,
'edit'
])
->
name
(
'view_ensino_aula_update'
);
Route
::
get
(
'/aulas/search/{user_pad_id?}'
,
[
EnsinoAulaController
::
class
,
'search'
])
->
name
(
'ensino_aula_search'
);
Route
::
get
(
'/aulas/search/{user_pad_id?}'
,
[
EnsinoAulaController
::
class
,
'search'
])
->
name
(
'ensino_aula_search'
);
});
});
...
...
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