DEV Community

Cover image for How to use Laravel Telescope package?
Al-Amin Islam
Al-Amin Islam

Posted on

How to use Laravel Telescope package?

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

Enter fullscreen mode Exit fullscreen mode

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

Image description

Top comments (0)