Laravel Telescope
Laravel Telescope is an elegant debug assistant for the Laravel framework. Telescope provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps and more. Telescope makes a wonderful companion to your local Laravel development environment.
Installation
You may use Composer to install Telescope into your Laravel project:
composer require laravel/telescope
php artisan telescope:install
php artisan migrate
The requests
We have the list of requests with the verb, the url, the HTTP code and when it is passed. The icon of one eye is also available for more information about a query:
We have all the details like the headers:
Les commandes
For Artisan orders it's the same principle: we have the list of past orders and we can get the detail:
Dump Watcher
The dump watcher records and displays your variable dumps in Telescope. When using Laravel, variables may be dumped using the global dump function. The dump watcher tab must be open in a browser for the recording to occur, otherwise the dumps will be ignored by the watcher.
Event Watcher
The event watcher records the payload, listeners, and broadcast data for any events dispatched by your application. The Laravel framework's internal events are ignored by the Event watcher.
Exception Watcher
The exception watcher records the data and stack trace for any reportable Exceptions that are thrown by your application.