Kim Nam Woo

Results 11 comments of Kim Nam Woo

page 223 -코드 23-14 app/Events/ArticleCreated.php +코드 23-14 app/Events/UserCreated.php -class UserCreated extends Event +class UserCreated

page 233 코드 23-29 -class PasswordRemindCreated **extends Event** +class PasswordRemindCreated ------- extends Event 를 삭제하지 않을경우 아래와 같은 오류 발생합니다 ---------- FatalErrorException in PasswordRemindCreated.php line 13: Class 'App\Events\Event' not found

page 232 코드 23-27 비밀번호 업데이트 하는 부분 누락 ( Git Hub 소스에도 해당하는 부분이 없는 것 같습니다 ) 저는 아래와 같이 추가해서 동작 되게 했습니다. $email = \DB::table( 'password_resets')->whereToken(...

page 250 코드 25-1 -parent::boot($router); +parent::boot(); ------------- 에러 발생 ------------ ErrorException in RouteServiceProvider.php line 28: Undefined variable: router

page 64 표 8-1 -ArticlesController@delete +ArticlesController@destroy -> 이부분이 php artisan route:list 로 출력하면 ArticlesController@destroy로 나옵니다. 그런데 소스 전반적으로 destroy로 되어있습니다. 혹시 delete 로 작성해도 되는 것인지는 모르겠습니다만..

page 285 코드 27-13 -{{ $file->filename }} ({{ $file->bytes }}) +{{ $attachment->filename }} ({{ $attachment->bytes }})

page 287 -코드 27-17 routes/web.php +코드 27-17 resources/views/articles/partial/form.blade.php

page 305 코드 28-13 -public function boot( Router $router) +public function boot() -parent::boot($router); +parent::boot();

page 327 코드 29-12 -class CommentsEvent extends Event +class CommentsEvent

page 343 dd('캐싱되면 출력 안됨'); 등의 문장을 넣어 놓고.. -> dd 로 했을경우 다음 return 문에 도달하지 못해서요, echo나 var_dump 등의 문장을 넣어 놓고.. 로 바꾸어야 할 것 같습니다.