やりたいこと
フォームに記入して、ボタンをクリックするとリダイレクトして別ページにとばしたい。
# コード
routes/web.php
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('/', 'PostsController@index')->name('top'); Route::resource('posts', 'PostsController', ['only' => ['create', 'store', 'show']]); // ここです★ Route::get('/thanks', function () { return view('thanks'); }); //
app/Http/Controllers/PostsController.php
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Post; class PostsController extends Controller { public function index() { $posts = Post::orderBy('created_at', 'desc')->get(); return view('posts.index', ['posts' => $posts]); } public function create() { return view('posts.create'); } public function store(Request $request) { $params = $request->validate([ 'title' => 'required|max:50', ]); Post::create($params); //おそらくここです★ return redirect()->route('thanks'); // } public function show($post_id) { $post = Post::findOrFail($post_id); return view('posts.show', [ 'post' => $post, ]); } }
view/posts/create.blade.php
//省略 <form method="POST" action="{{ route('posts.store') }}"> @csrf <fieldset class="mb-4"> <div class="form-group"> <label for="title"> タイトル </label> <input id="title" name="title" class="form-control {{ $errors->has('title') ? 'is-invalid' : '' }}" value="{{ old('title') }}" type="text"> @if ($errors->has('title')) <div class="invalid-feedback"> {{ $errors->first('title') }} </div> @endif </div> <div class="mt-5"> <a class="btn btn-secondary" href="{{ route('top') }}"> キャンセル </a> <button type="submit" class="btn btn-primary"> 投稿する </button> </div> </fieldset> </form> //省略
何かアドバイス頂ければ幸いです
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。