Laravel Telescope makes a wonderful companion to your local Laravel development environment.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.
First, install telescope with the following command in your existing project.
composer require laravel/telescope
After installing Telescope, publish its assets using the this command. After run migration add new table in your existing DB.
php artisan telescope:install
php artisan migrate
While whole process is done then run in your application.If you want to see your telescope dashbaord , your url will be
http://127.0.0.1:8000/telescope/requests
Top comments (0)