投稿を削除したいです。
しかしformタグのactionの指定がわかりません
ご教授お願いいたします。
ファイル名web.php Route::get("/","PostController@index"); Route::get('post/new', 'PostController@new'); Route::post('post/create', 'PostController@create')->name('post.create'); // 保存 Route::get('post/create', 'PostController@create')->name('post.create'); // 作成 Route::get('post/show/{id}', 'PostController@show')->name('post.show'); Route::get('post/edit/{id}', 'PostController@edit'); Route::post('post/update/{id}', 'PostController@update'); Route::delete('post/{id}', 'PostController@destroy')->name('post.destroy'); Auth::routes(); Route::get('/home', 'HomeController@index')->name('home');
ファイル名PostController.php public function destroy(Request $request, $id){ $post = Post::find($id); $post->delete(); return redirect('/'); }
ファイル名show.blade.php <div class="item-detail-price-box"> <!-- <span class="item-detail-price">値段</span> <span class="item-detail-tax">(税込)</span> --> @if( $post->user_id == Auth::id()) <a href="/post/edit/{{ $post->id }}">編集</a> <form method="post" action="/post/{{$post->id}}"> {{ csrf_field()}} <input name="_method" type="hidden" value="削除"> <input type="submit" name="" value="削除する"> </form> @endif </div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。