.png)
In this blog, I would like to show you how to install Laravel Telescope.
Laravel Telescope is a powerful debug assistant tool for Laravel applications, developed by the Laravel team. It provides insight into the inner workings of an application during development, making it easier for developers to debug and optimize their code. Telescope provides a web interface that allows developers to monitor various aspects of their application in real-time, including requests, queries, jobs, exceptions, and logs. It also allows for the creation of custom monitoring tools that can be used to track any aspect of the application.
I got to know about this when i was debugging my laravel application but was not getting any tool then i checked laravel documentation and found this life saver Telescope.
Let's install this:
I hope you have installed Laravel Application,
Install Laravel Telescope Package
composer require laravel/telescope
Then you need to run this command:
php artisan telescope:install
Run the migrate command to load the telescope table:
php artisan migrate
Run Application
php artisan serve
Now, open the following URL or whichever port you are running append with /telescope:
http://127.0.0.1:8000/telescope
What features provide by the telescope?
- Requests
- Commands
- Schedule
- Jobs
- Batches
- Cache
- Dumps
- Events
- Exceptions
- Gates
- Logs
- Models
- Notifications
- Queries
- Redis
- Views
0 Comments