既に存在するデータベースを更新するためのフォームを取得しようとしています。完全に機能するコードを作成ブレードから編集ブレードに効果的にコピーして貼り付けましたが、データベースを編集する代わりに間違った機能を実行しているように見えるという奇妙な問題があります。
index.blade.php のボタンをクリックして編集ブレードに移動すると、すべて問題ないように見えますが、保存する代わりに保存ボタンをクリックすると、ナビゲーション行をコメントアウトしたため、代わりに実行されているように見えて停止しますコントローラは機能を示し、projects.courses.index に移動します。
作成ブレードで POST が正常に動作するにもかかわらず、フォームが更新に POST を使用しないことを確認するために読みました。フォームタグで POST のままにし、後で PUT にするメソッドを追加すると、403 エラーがスローされます。それが実際にやりたいことだと思うので、web.phpルートを更新する必要がありますが、それが必要な場合はそこに何を入れるかわかりません。
ご協力いただきありがとうございます。
これはweb.phpです
<?php
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\ProjectController;
use App\Http\Controllers\CourseController;
/*
|--------------------------------------------------------------------------
| 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('/', function () {
return view('welcome');
});
Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () {
return view('dashboard');
})->name('dashboard');
Route::group(['middleware'=>'auth'], function() {
Route::resource('projects', ProjectController::class);
Route::resource('projects.courses', CourseController::class);
});
コントローラーはこちら
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Requests\StoreProjectRequest;
use App\Http\Requests\UpdateProjectRequest;
use App\Models\Project;
class ProjectController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$projects = Project::all();
return view('projects.index') -> with('name', 'Projects') -> with(compact('projects'));
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
return view('projects.create');
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(StoreProjectRequest $request)
{
$row = new Project;
$row->code = $request->code;
$row->code_full = $request->code_full;
$row->title = $request->title;
$row->description = $request->description;
$row->save();
return redirect()->route('projects.index');
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show(Project $project)
{
return redirect()->route('projects.courses.index', $project);
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit(Project $project)
{
return view('projects.edit') -> with('project', $project);
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(UpdateProjectRequest $request, $id)
{
$row = Project::find($id);
$row->code = $request->code;
$row->code_full = $request->code_full;
$row->title = $request->title;
$row->description = $request->description;
$row->save();
//return redirect()->route('projects.index');
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy(Project $project)
{
$project->delete();
return redirect()->route('projects.index');
}
}
編集ブレードはこちら
<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Edit Project') }}
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="mt-10 sm:mt-0">
<div class="md:grid md:grid-cols-3 md:gap-6">
<div class="md:col-span-1">
<div class="px-4 sm:px-0">
<h3 class="text-lg font-medium leading-6 text-gray-900">Project Information</h3>
<p class="mt-1 text-sm text-gray-600">
Please fill out this form to edit the project {{$project->title}}.
</p>
</div>
</div>
<div class="mt-5 md:mt-0 md:col-span-2">
<form action="{{ route('projects.update', $project->id) }}" method="PUT" enctype="multipart/form-data">
@csrf
<div class="shadow overflow-hidden sm:rounded-md">
<div class="px-4 py-5 bg-white sm:p-6">
<div class="grid grid-cols-6 gap-6">
<div class="col-span-6 sm:col-span-3">
<label for="code" class="block text-sm font-medium text-gray-700">Project ID (4 digit code)</label>
<input type="text" name="code" id="code" autocomplete="" class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 rounded-md" placeholder="{{ $project->code }}" value="{{ old('code', '') }}">
@error('code')
<p class="text-sm text-red-600">{{$message}}</p>
@enderror
</div>
<div class="col-span-6 sm:col-span-3">
<label for="code_full" class="block text-sm font-medium text-gray-700">Project Code</label>
<input type="text" name="code_full" id="code_full" autocomplete="" class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 rounded-md" placeholder="{{ $project->code_full }}" value="{{ old('code_full', '') }}">
@error('code_full')
<p class="text-sm text-red-600">{{$message}}</p>
@enderror
</div>
<div class="col-span-6 sm:col-span-4">
<label for="title" class="block text-sm font-medium text-gray-700">Project Title</label>
<input type="text" name="title" id="title" autocomplete="" class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 rounded-md" placeholder="{{ $project->title }}" value="{{ old('title', '') }}">
@error('title')
<p class="text-sm text-red-600">{{$message}}</p>
@enderror
</div>
<div class="col-span-6">
<label for="description" class="block text-sm font-medium text-gray-700">Description</label>
<input type="text" name="description" id="description" autocomplete="" class="mt-1 focus:ring-indigo-500 focus:border-indigo-500 block w-full shadow-sm sm:text-sm border-gray-300 rounded-md" placeholder="{{ $project->description }}" value="{{ old('description', '') }}">
@error('description')
<p class="text-sm text-red-600">{{$message}}</p>
@enderror
</div>
</div>
</div>
<div class="px-4 py-3 bg-gray-50 text-right sm:px-6">
<button type="submit" class="inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">
Save
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</x-app-layout>