Laravel 7.4에서 디버그 바를 사용하는 방법
1984 단어 ComposerPHPlaravel-debugbar라라벨
barryvdh/laravel-debugbar 라는 패키지가 있으므로 이것을 사용한다.
barryvdh/laravel-debugbar 설치
cd your/laravel/project/path
composer require barryvdh/laravel-debugbar
config 값 설정
config/debugbar.php를 작성.
다음 명령을 두드리면
config/debugbar.php
가 생성됩니다.cd your/laravel/project/path
php artisan vendor:publish --provider="Barryvdh\Debugbar\ServiceProvider"
config/app.php
또, providers와 aliases에 하기를 추가 Laravel 5.5 이후는 불필요하게 된 것 같다.
config/app.php
...
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => env('APP_DEBUG', false),
...
위와 같이 되어 있으므로 .env.xxxx로 설정.
env.xxxxx
APP_DEBUG=true
결과
Reference
이 문제에 관하여(Laravel 7.4에서 디버그 바를 사용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/LowSE01/items/b72da1ccd7259ac27253텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)