Laravelでフォームからアップロードした内容を、ユーザがlist.blade.phpにある編集ボタンから編集ページ(edit.blade.php)へ飛び、更新できるようにしたいのですが、うまくいきません。更新ボタンを押すと、/edit/{id}に飛んで編集ページが表示されるはずなのですが、419|Page Expiredとなってしまいます。
以下が関連部分のコードになるのですが、知恵をお貸しいただけないでしょうか。
web.php
php
1Route::get('/edit/{id}', 'TestController@edit'); 2Route::post('/edit/{id}', 'TestController@update');
TestController
php
1public function edit(Request $request) 2 { 3 $test = Test::findOrFail($request->id); 4 return view('test.edit', ['test' => $test]); 5 } 6 7 public function update(Request $request) 8 { 9 $test = Test::find($request->id); 10 $test->name = $request->name; 11 $path = $request->file('image')->store('public/image'); 12 $test->image = str_replace('public/', 'storage/', $path); 13 $test->save(); 14 return redirect('/tests')->with('flash_message', '更新が完了しました'); 15 }
list.blade.php
php
1@extends('layouts.app') 2 3@section('title', '投稿記事一覧') 4 5@section('content') 6 7<!-- フラッシュメッセージ --> 8@if (session('flash_message')) 9<div class="flash_message"> 10{{ session('flash_message') }} 11</div> 12@endif 13 14<main class="mt-4"> 15@yield('content') 16</main> 17<!-- フラッシュメッセージここまで --> 18 19<a href="/articles/create" class="btn btn-primary">新規投稿</a> 20@if(count($tests) > 0) 21 @foreach($tests as $test) 22 <a href="/tests/{{$test->id}}"> 23 <div class="card my-3"> 24 <div class="card-body"> 25 <h5 class="card-title">{{$test->name}}</h5> 26 <p class="card-text"><img src="/storage/image/{{$test->image}}"></p> 27 </div> 28 <form method="post" action="/test/delete/{{$test->id}}"> 29 {{ csrf_field() }} 30 <input type="submit" value="削除" class="btn btn-danger mt-3" onclick='return confirm("本当に削除しますか?");'><br> 31 </form> 32 <form method="post" action="/edit/{{$test->id}}"> 33 <input type="submit" value="更新" class="btn btn-primary mt-3"> //☆更新ボタン 34 <br></br> 35 </form> 36 </div> 37 </a> 38 @endforeach 39@endif 40@endsection
edit.blade.php
@extends('layouts.app') @section('content') <div> <form action="/edit/{id}" method="post"> {{ csrf_field() }} 料理名:<input type="text" name="name" value='{{ $test->name }}'><input type='text' name='title' value='{{ $test->title }}'><br> 画像: <input type="file" name="image"><br> <input type='submit' value='投稿'> </form> </div> @endsection
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/13 15:19
2020/07/13 15:28 編集
2020/07/13 15:52
2020/07/13 16:11
2020/07/13 16:17
2020/07/13 16:29
2020/07/13 17:14