Laravel Telescope - A useful debug tool

I decided to look more into the Laravel packages as I’ve yet to explore all of them and try out the Laravel Telescope package, a tool used for debugging.

To add Telescope to your Laravel project run this command, the —dev will only add Telescope to the local version of the project.

composer require laravel/telescope --dev

Now add the assets and migration files.

php artisan telescope:install

Run the migrate command to apply the Telescope migration files to the database.

php artisan migrate

Run the Laravel project using the serve command.

PHP artisan serve

Now go to http://127.0.0.1:8000/telescope to access Telescope.

laravel-telescope.png