Laravel 9 console output

Viewed 22

I can not see the console output with laravel 9. There is not dd($request) or dump($request).

This is the .env file. It's something wrong with it? As you can see the APP_DEBUG is true

APP_NAME=Laravel
APP_ENV=local
APP_KEY=base64:2KDVq0Rniqrte5wVu2exxiNbpEYXCr4+QslYbZhH9bM=
APP_DEBUG=true
APP_URL=http://localhost

LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

The only output is:

INFO Server running on [http://127.0.0.1:8000].

Press Ctrl+C to stop the server

2022-09-18 16:40:10 ........................... ~ 1s 2022-09-18 16:40:11 ........................... ~ 2s

But I can not debug with that.

0 Answers
Related