Why parameter from form not passed to controller in laravel?
up vote
0
down vote
favorite
I want to submit a form with a parameter to store controller by having this code at the form:
{!! Form::open(['method' => 'POST', 'action' => ['ModulKeluargaController@store', $getItemregistration->ItemRegistrationID]]) !!}
Then, I retrieve the parameter in store controller:
public function store(Request $request, $id)
{
$data = ['ItemRegistrationID' => $request->itemregistrationid,
'SectionID' => $request->sectionid,
'CategoryID' => $request->categoryid,
'familyname' => $request->familyname,
'kpfamily' => $request->kpfamily,
'No_tel' => $request->No_tel,
'Comments' => $request->Comments,
'KategoriFamID' => $request->kategori_family,
'majikan' => $request->majikan,
'ulasan' => $request->ulasan,
'PewarisID' => $request->kategori_pewaris,
'no_akaun' => $request->no_akaun,
'statusPengundiID' => $request->statuspengundi,
];
$itemregistrationkeluarga = DB::table('itemregistrationkeluarga')->insert($data);
if($itemregistrationkeluarga)
return redirect()->route('viewProfil', ['id' =>$id]);
else
return redirect()->route('viewProfil', ['id' =>$id]);
}
The route for keluarga controller are as follows:
//keluarga utama
Route::resource('keluarga', 'ModulKeluargaController');
//view maklumat keluarga
Route::get('/view_keluarga/{id}', 'ModulKeluargaController@show')->name('viewKeluarga');
//add maklumat keluarga kakitangan
Route::post('/add_keluarga/{id}', 'ModulKeluargaController@create')->name('addKeluarga');
//edit maklumat keluarga kakitangan
Route::get('/edit_keluarga/{id}', 'ModulKeluargaController@edit')->name('editKeluarga');
//delete ahli keluarga
Route::get('/delete_keluarga/{id}', 'ModulKeluargaController@destroy')->name('deleteKeluarga');
However, the problem is it produce this error when submit the form:
Type error: Too few arguments to function AppHttpControllersModulKeluargaController::store(), 1 passed and exactly 2 expected
Looks like the $id parameter is not received from $getItemregistration->ItemRegistrationID value in form::open.
What am I missing here?
forms laravel-5 controller
add a comment |
up vote
0
down vote
favorite
I want to submit a form with a parameter to store controller by having this code at the form:
{!! Form::open(['method' => 'POST', 'action' => ['ModulKeluargaController@store', $getItemregistration->ItemRegistrationID]]) !!}
Then, I retrieve the parameter in store controller:
public function store(Request $request, $id)
{
$data = ['ItemRegistrationID' => $request->itemregistrationid,
'SectionID' => $request->sectionid,
'CategoryID' => $request->categoryid,
'familyname' => $request->familyname,
'kpfamily' => $request->kpfamily,
'No_tel' => $request->No_tel,
'Comments' => $request->Comments,
'KategoriFamID' => $request->kategori_family,
'majikan' => $request->majikan,
'ulasan' => $request->ulasan,
'PewarisID' => $request->kategori_pewaris,
'no_akaun' => $request->no_akaun,
'statusPengundiID' => $request->statuspengundi,
];
$itemregistrationkeluarga = DB::table('itemregistrationkeluarga')->insert($data);
if($itemregistrationkeluarga)
return redirect()->route('viewProfil', ['id' =>$id]);
else
return redirect()->route('viewProfil', ['id' =>$id]);
}
The route for keluarga controller are as follows:
//keluarga utama
Route::resource('keluarga', 'ModulKeluargaController');
//view maklumat keluarga
Route::get('/view_keluarga/{id}', 'ModulKeluargaController@show')->name('viewKeluarga');
//add maklumat keluarga kakitangan
Route::post('/add_keluarga/{id}', 'ModulKeluargaController@create')->name('addKeluarga');
//edit maklumat keluarga kakitangan
Route::get('/edit_keluarga/{id}', 'ModulKeluargaController@edit')->name('editKeluarga');
//delete ahli keluarga
Route::get('/delete_keluarga/{id}', 'ModulKeluargaController@destroy')->name('deleteKeluarga');
However, the problem is it produce this error when submit the form:
Type error: Too few arguments to function AppHttpControllersModulKeluargaController::store(), 1 passed and exactly 2 expected
Looks like the $id parameter is not received from $getItemregistration->ItemRegistrationID value in form::open.
What am I missing here?
forms laravel-5 controller
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to submit a form with a parameter to store controller by having this code at the form:
{!! Form::open(['method' => 'POST', 'action' => ['ModulKeluargaController@store', $getItemregistration->ItemRegistrationID]]) !!}
Then, I retrieve the parameter in store controller:
public function store(Request $request, $id)
{
$data = ['ItemRegistrationID' => $request->itemregistrationid,
'SectionID' => $request->sectionid,
'CategoryID' => $request->categoryid,
'familyname' => $request->familyname,
'kpfamily' => $request->kpfamily,
'No_tel' => $request->No_tel,
'Comments' => $request->Comments,
'KategoriFamID' => $request->kategori_family,
'majikan' => $request->majikan,
'ulasan' => $request->ulasan,
'PewarisID' => $request->kategori_pewaris,
'no_akaun' => $request->no_akaun,
'statusPengundiID' => $request->statuspengundi,
];
$itemregistrationkeluarga = DB::table('itemregistrationkeluarga')->insert($data);
if($itemregistrationkeluarga)
return redirect()->route('viewProfil', ['id' =>$id]);
else
return redirect()->route('viewProfil', ['id' =>$id]);
}
The route for keluarga controller are as follows:
//keluarga utama
Route::resource('keluarga', 'ModulKeluargaController');
//view maklumat keluarga
Route::get('/view_keluarga/{id}', 'ModulKeluargaController@show')->name('viewKeluarga');
//add maklumat keluarga kakitangan
Route::post('/add_keluarga/{id}', 'ModulKeluargaController@create')->name('addKeluarga');
//edit maklumat keluarga kakitangan
Route::get('/edit_keluarga/{id}', 'ModulKeluargaController@edit')->name('editKeluarga');
//delete ahli keluarga
Route::get('/delete_keluarga/{id}', 'ModulKeluargaController@destroy')->name('deleteKeluarga');
However, the problem is it produce this error when submit the form:
Type error: Too few arguments to function AppHttpControllersModulKeluargaController::store(), 1 passed and exactly 2 expected
Looks like the $id parameter is not received from $getItemregistration->ItemRegistrationID value in form::open.
What am I missing here?
forms laravel-5 controller
I want to submit a form with a parameter to store controller by having this code at the form:
{!! Form::open(['method' => 'POST', 'action' => ['ModulKeluargaController@store', $getItemregistration->ItemRegistrationID]]) !!}
Then, I retrieve the parameter in store controller:
public function store(Request $request, $id)
{
$data = ['ItemRegistrationID' => $request->itemregistrationid,
'SectionID' => $request->sectionid,
'CategoryID' => $request->categoryid,
'familyname' => $request->familyname,
'kpfamily' => $request->kpfamily,
'No_tel' => $request->No_tel,
'Comments' => $request->Comments,
'KategoriFamID' => $request->kategori_family,
'majikan' => $request->majikan,
'ulasan' => $request->ulasan,
'PewarisID' => $request->kategori_pewaris,
'no_akaun' => $request->no_akaun,
'statusPengundiID' => $request->statuspengundi,
];
$itemregistrationkeluarga = DB::table('itemregistrationkeluarga')->insert($data);
if($itemregistrationkeluarga)
return redirect()->route('viewProfil', ['id' =>$id]);
else
return redirect()->route('viewProfil', ['id' =>$id]);
}
The route for keluarga controller are as follows:
//keluarga utama
Route::resource('keluarga', 'ModulKeluargaController');
//view maklumat keluarga
Route::get('/view_keluarga/{id}', 'ModulKeluargaController@show')->name('viewKeluarga');
//add maklumat keluarga kakitangan
Route::post('/add_keluarga/{id}', 'ModulKeluargaController@create')->name('addKeluarga');
//edit maklumat keluarga kakitangan
Route::get('/edit_keluarga/{id}', 'ModulKeluargaController@edit')->name('editKeluarga');
//delete ahli keluarga
Route::get('/delete_keluarga/{id}', 'ModulKeluargaController@destroy')->name('deleteKeluarga');
However, the problem is it produce this error when submit the form:
Type error: Too few arguments to function AppHttpControllersModulKeluargaController::store(), 1 passed and exactly 2 expected
Looks like the $id parameter is not received from $getItemregistration->ItemRegistrationID value in form::open.
What am I missing here?
forms laravel-5 controller
forms laravel-5 controller
asked Nov 9 at 8:02
joun
52114
52114
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Open your form with named route its much easier.
{{ Form::open(['route' => ['addKeluarga' => $getItemregistration->ItemRegistrationID], 'method' => 'POST'])) }}
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Open your form with named route its much easier.
{{ Form::open(['route' => ['addKeluarga' => $getItemregistration->ItemRegistrationID], 'method' => 'POST'])) }}
add a comment |
up vote
0
down vote
Open your form with named route its much easier.
{{ Form::open(['route' => ['addKeluarga' => $getItemregistration->ItemRegistrationID], 'method' => 'POST'])) }}
add a comment |
up vote
0
down vote
up vote
0
down vote
Open your form with named route its much easier.
{{ Form::open(['route' => ['addKeluarga' => $getItemregistration->ItemRegistrationID], 'method' => 'POST'])) }}
Open your form with named route its much easier.
{{ Form::open(['route' => ['addKeluarga' => $getItemregistration->ItemRegistrationID], 'method' => 'POST'])) }}
answered Nov 9 at 10:34
Omar Abdullah
1967
1967
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53221859%2fwhy-parameter-from-form-not-passed-to-controller-in-laravel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown