0

I've created a from within a laravel vue component which I'm trying to submit, but I'm getting a 404 error ThoughtJournalController@store not found.

<form method="POST" action="{{ action('ThoughtJournalController@store') }}">

How do I correctly submit a form within the vue component?

Joe Leeson
  • 71
  • 11

2 Answers2

0

Create a route in resources/routes/web.php:

Route::post( '/submit', 'ThoughtJournalController@store' );

Then edit your form:

<form method="POST" action="/submit">
Robin Gillitzer
  • 1,603
  • 1
  • 6
  • 17
0

It seems like you forgot to Define the route did you do:

    Route::get('posts', 'ThoughtJournalController@store');
Nick Alexander
  • 361
  • 2
  • 5
  • 21