How to get data transfer from the form into database Laravel 5

Stas Leonov

I'm trying to transfer data from the form to overwrite the content database .But get the error.

It is my route,method and form.

Route::get('edit/{id}','JokeController@edit');


  public function edit(JokeModerateRequest $request,$id) {

    $joke = Joke::findOrFail($id);

    return view('jokes.edit', [ 'joke' => $joke ]);
}


<form action="/update" method="post">

    <input type="text" value="{{  $joke -> content}}" name="body">

    <input type="submit" value="Save">

    <input type="hidden" name="_token" value="{{ csrf_token() }}">

</form>

But when I try use next route and method

Route::post('update/{id}','JokeController@update');

  function update(JokeModerateRequest $request,$id) 
    $joke = Joke::findOrFail($id);
    $joke->content = $request -> get('content');
    $joke->save();
    return back();

I have next error

Sorry, the page you are looking for could not be found.

1/1
NotFoundHttpException in RouteCollection.php line 145:
Paweł Duda

The problem lies here:

<form action="/update" method="post">

This will redirect to /update route (which you haven't defined) instead of /update/id. Those two are different routes.

To fix this, change action of the form to:

<form action="/update/{{ $joke->id }}" method="post">

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get database data transfer stats in PostgreSQL and MySQL?

From Dev

laravel error to get data from database

From Dev

Passing data from form to controller Laravel 5

From Dev

How to get data from DB in Test Laravel 5

From Dev

How to transfer data from one table of a database to a table in another database

From Dev

How to get data from two related tables in laravel 5?

From Dev

Laravel 5: form data won't submit to the database - no error shown

From Dev

Database backup with custom code in laravel 5 and get the data upto 10 rows from per table in database

From Dev

How to edit form with data from database tables in laravel

From Dev

How to get data from a database using FOREACH in Laravel?

From Dev

How to get data from database to view page in laravel 8?

From Dev

How do I write a method which is supposed to get data from database to show on a form in C#

From Dev

How to get data from the database?

From Dev

How to transfer data from Tabular model (SSAS Tabular) to Relational Database?

From Dev

Transfer data to database from datagridview

From Dev

How to get and send _token from an html page when submitting a form request to laravel 5 app

From Dev

How to get data from DB in Test Laravel 5

From Dev

How to transfer data from one table of a database to a table in another database

From Dev

How store data from a form into an exam table that contains foreign keys in laravel 5?

From Dev

laravel 5 and Ajax get data from database:

From Dev

how to get data from database in laravel with json?

From Dev

Laravel 5: form data won't submit to the database - no error shown

From Dev

How to edit form with data from database tables in laravel

From Dev

Laravel - Get a data from a form

From Dev

How do i get the primary key of a form value from the database in Laravel

From Dev

How can I get data from a form model into a database in Django

From Dev

Laravel5 How to Update latest data and get true accumulative sum to database

From Dev

HTML form in while loop, how to transfer data from each item?

From Dev

How to transfer data from one database to another in Django?

Related Related

  1. 1

    How to get database data transfer stats in PostgreSQL and MySQL?

  2. 2

    laravel error to get data from database

  3. 3

    Passing data from form to controller Laravel 5

  4. 4

    How to get data from DB in Test Laravel 5

  5. 5

    How to transfer data from one table of a database to a table in another database

  6. 6

    How to get data from two related tables in laravel 5?

  7. 7

    Laravel 5: form data won't submit to the database - no error shown

  8. 8

    Database backup with custom code in laravel 5 and get the data upto 10 rows from per table in database

  9. 9

    How to edit form with data from database tables in laravel

  10. 10

    How to get data from a database using FOREACH in Laravel?

  11. 11

    How to get data from database to view page in laravel 8?

  12. 12

    How do I write a method which is supposed to get data from database to show on a form in C#

  13. 13

    How to get data from the database?

  14. 14

    How to transfer data from Tabular model (SSAS Tabular) to Relational Database?

  15. 15

    Transfer data to database from datagridview

  16. 16

    How to get and send _token from an html page when submitting a form request to laravel 5 app

  17. 17

    How to get data from DB in Test Laravel 5

  18. 18

    How to transfer data from one table of a database to a table in another database

  19. 19

    How store data from a form into an exam table that contains foreign keys in laravel 5?

  20. 20

    laravel 5 and Ajax get data from database:

  21. 21

    how to get data from database in laravel with json?

  22. 22

    Laravel 5: form data won't submit to the database - no error shown

  23. 23

    How to edit form with data from database tables in laravel

  24. 24

    Laravel - Get a data from a form

  25. 25

    How do i get the primary key of a form value from the database in Laravel

  26. 26

    How can I get data from a form model into a database in Django

  27. 27

    Laravel5 How to Update latest data and get true accumulative sum to database

  28. 28

    HTML form in while loop, how to transfer data from each item?

  29. 29

    How to transfer data from one database to another in Django?

HotTag

Archive