前提・実現したいこと
Laravelで掲示板を作成したが、投稿に対するコメントが追加されない。コメントを表示、追加したい。
発生している問題・エラーメッセージ
既存で作成した掲示板にログイン機能を実装した。それが問題か不明ですが、投稿内容が表示されている画面から、コメント追加しても、何も追加されない。
該当のソースコード
routes/web.php Route::resource('comments', 'CommentsController', ['only' => ['store']]);
Controllers/CommentsController.php <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Post; class CommentsController extends Controller { public function store(Request $request) { $params = $request->validate([ 'post_id' => 'required|exists:posts,id', 'body' => 'required|max:2000', ]); $post = Post::findOrFail($params['post_id']); $post->comments()->create($params); return redirect()->route('posts.show', ['post' => $post]); } }
views/posts/show.blade.php @extends('layout') @section('content') <div class="container mt-4"> <div class="border p-4"> <div class="mb-4 text-right"> <a class="btn btn-primary" href="{{route('posts.edit',['post'=>$post])}}"> 編集する </a> <form style="display: inline-block;" method="POST" action="{{route('posts.destroy',['post'=>$post])}}" > @csrf @method('DELETE') <button class="btn btn-danger">削除する</button> </form> </div> <h1 class="h5 mb-4"> {{$post->title}} </h1> <p class="mb-5"> {!! nl2br(e($post->body))!!} </p> <section> <h2 class="h5 mb-4"> コメント </h2> @forelse($post->comments as $comment) <div class="border-top p-4"> <time class="text-secondary"> {{ $comment->created_at->format('Y.m.d H:i') }} </time> <p class="mt-2"> {!! nl2br(e($comment->body)) !!} </p> </div> @empty <p>コメントはまだありません。</p> @endforelse </section> </div> </div> <form class="m-4" method="POST" action="{{ route('comments.store') }}"> @csrf <input namde="post_id" type="hidden" value="{{$post->id}}" > <div class="form-group"> <label for="body"> 本文 </label> <textarea id="body" name="body" class="form-control {{$errors->has('body')?'is-invalid':''}}" row="4" >{{old('body')}}</textarea> @if ($errors->has('body')) <div class="invalid-feedback"> {{$errors->first('body') }} </div> @endif </div> <div class="mt-4"> <button type="submit" class="btn btn-primary"> コメントする </button> </div> </form> @endsection
create_comments_table.php <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateCommentsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('comments', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('post_id'); $table->text('body'); $table->timestamps(); $table->foreign('post_id')->references('id')->on('posts'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('comments'); } }
試したこと
回答1件
あなたの回答
tips
プレビュー