Laravel 7.4でデバッグバーを使用する方法
- barryvdh/laravel-debugbarというパッケージがあるのでこれを使用する。
barryvdh/laravel-debugbarをインストール
- compose
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
- config/app.phpの'debug'項目値をtrueに設定する。
-
また、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.xxxxxAPP_DEBUG=true
結果
Author And Source
この問題について(Laravel 7.4でデバッグバーを使用する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/LowSE01/items/b72da1ccd7259ac27253著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .