8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

EC2のLaravel6.0環境にデバッグバーを入れる AWS/Laravel連載(7)

Posted at

はじめに

前回の記事で、Laravel6.0にauthを入れて日本語化しました。
EC2のLaravel6.0環境に入れたauth(認証機能)を日本語化する AWS/Laravel連載(6)

本格的に開発を進めていく前に、デバッグ用のデバッグバーを導入しましょう。

導入イメージ
画面下部に、どんなSQLが流れているのかであったり、変数やリクエストパラメータの中身を確認できます。
debug.png

導入方法

非常にシンプル。
composerでLaravel-debugbarを導入します。

$ composer require barryvdh/laravel-debugbar --dev

もしメモリが足りず入れれない場合は、t2.smallぐらいに変更してみましょう。

完成図

あとはページにアクセスするだけで、下部にデバッグバーが出てきます。
debug.png

オン/オフ切り替えは、.envのAPP_DEBUGで設定できます。

.env
...
APP_DEBUG=false
...

上記記載で非表示になりますし、逆に下記記載で表示されます。

.env
...
APP_DEBUG=true
...

今回は短いですが以上です。

8
6
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
8
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?