Forum Laravel a simple question about posting a form
<form action="{{ route('insert') }}" method="POST"> </form>
what does it do
on my web.php
Route::resource('posts', 'PostController'); Route::post('posts', '[email protected]')->name('insert');
cause I'm trying to insert some data to my database
Please sign in or create an account to participate in this conversation.
There's no shortage of content at Laracasts. In fact, you could watch nonstop for days upon days, and still not see everything!
Get Started
a simple question about posting a form
what does it do
on my web.php
cause I'm trying to insert some data to my database