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?










share|improve this question


























    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?










    share|improve this question
























      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?










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 9 at 8:02









      joun

      52114




      52114
























          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'])) }}






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            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

























            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'])) }}






            share|improve this answer

























              up vote
              0
              down vote













              Open your form with named route its much easier.



              {{ Form::open(['route' => ['addKeluarga' => $getItemregistration->ItemRegistrationID], 'method' => 'POST'])) }}






              share|improve this answer























                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'])) }}






                share|improve this answer












                Open your form with named route its much easier.



                {{ Form::open(['route' => ['addKeluarga' => $getItemregistration->ItemRegistrationID], 'method' => 'POST'])) }}







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 9 at 10:34









                Omar Abdullah

                1967




                1967






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini