- 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