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 --devNow add the assets and migration files.
php artisan telescope:installRun the migrate command to apply the Telescope migration files to the database.
php artisan migrateRun the Laravel project using the serve command.
PHP artisan serveNow go to http://127.0.0.1:8000/telescope to access Telescope.
