エンジニア初心者が躓いたことハマったことを公開します!
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
Note: If you receive a "class not found" error when running migrations, try running the composer dump-autoload command.
『Migrations & Seeding』
リソースフルコントローラーにより処理されるアクション
変数 パス アクション Route Name GET /リソース名 index resource.index GET /リソース名/create create resource.create POST /リソース名 store resource.store GET /リソース名/{resource} show resource.show GET /リソース名/{resource}/edit edit resource.edit PUT/PATCH /リソース名/{resource} update resource.update DELETE /リソース名/{resource} destroy resource.destroy
Actions Handled By Resource Controller
Verb Path Action Route Name GET /resource index resource.index GET /resource/create create resource.create POST /resource store resource.store GET /resource/{resource} show resource.show GET /resource/{resource}/edit edit resource.edit PUT/PATCH /resource/{resource} update resource.update DELETE /resource/{resource} destroy resource.destroy