LoginSignup
1
1

More than 1 year has passed since last update.

「速習 Laravel 改訂2版」誤記

Posted at

概要

「速習 Laravel 改訂2版」誤記の内容についてサンプルの通りにコードを書いても動かなかったため、自分でコードを訂正しています。

誤記と思われる点と訂正コードを他の学習者のために投稿します。
まだ経験浅い立場なので見当違いであればご指摘ください。

環境

win10 home
PHP 8.1.6
MariaDB 10.4.24

コード

P205 create.blade.php 4行目
x <form method="POST" action="/save">
o <form method="POST" action="/save/store">

P210 hello/list.blade.php 27行目
x <a href="/save/{{ $record->id }}">削除</a>
o <a href="/save/{{$record->id}}/show">詳細</a>

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1