• Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException Error Fix In Laravel

    Use Route::post() instead of Route::get(). It will work.
    Route::post() to allow the form to POST the data to the URL.

    For Example,
    Route::get('store', 'UserController@store');
                           to
    Route::post('store', 'UserController@store'); 


                                 

  • You might also like

    No comments:

    Post a Comment