On the Laravel News site they have a post about the Laravel Telescope beta that's just been announced. Laravel Telescope is an introspection and debugging tool that integrates with your Laravel application to provide details gathered during execution and issues along the way.
The first beta release of Laravel Telescope is now out and available for everyone. If you are not familiar with Telescope here is the quick overview: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.
You can get the beta by installing it through Composer.
You install it the same way you'd install any other Laravel package via a composer require
for laravel/telescope
and run the installation and migration steps using the artisan
command. This tool is only for Laravel applications and is tightly integrated with the tool. For more information on Telescope, check out its GitHub repository.