ItSolutionStuff.com

How to Install and Configuration Telescope in Laravel 12?

By Hardik Savani • April 28, 2025
Laravel

In this tutorial, we will learn how to install and configuration in laravel 12 application.

Laravel Telescope is a powerful debugging 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.

Here, I will give you simple steps on how to install Telescope in your Laravel app and how it looks after installation.

Install Laravel Telescope Package

Install Telescope with the following command:

composer require laravel/telescope

You can also install for a specific environment:

composer require laravel/telescope --dev

Install Telescope

After installing the package, we have to install Telescope using the following command, which will create migration files and a configuration file.

php artisan telescope:install

Now, let's run the following command to create tables for the telescope.

php artisan migrate

Now you are ready to run the telescope. So let's run the project.

php artisan serve

open bellow url

localhost:8000/telescope/requests

You can see below a screenshot of the telescope:

What features provide by telescope?

  • Requests
  • Commands
  • Schedule
  • Jobs
  • Batches
  • Cache
  • Dumps
  • Events
  • Exceptions
  • Gates
  • Logs
  • Mail
  • Models
  • Notifications
  • Queries
  • Redis
  • Views

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Laravel 12 Summernote Image Upload Tutorial

Read Now →

Laravel 12 Dynamic Google Charts Integration Tutorial

Read Now →

laravel 12 Socialite Login with Twitter / X Account Example

Read Now →

How to Get User Location using IP Address in Laravel 12?

Read Now →

Laravel 12 Drag and Drop File Upload with Dropzone JS

Read Now →

Laravel 12 Simple Pagination Example Tutorial

Read Now →

How to Generate App Key in Laravel 12?

Read Now →

Laravel 12 Many to Many Eloquent Relationship Tutorial

Read Now →

Laravel 12 Has Many Through Relationship Example

Read Now →

Laravel 12 Cron Job Task Scheduling Example

Read Now →

Laravel 12 Change Date Format Examples

Read Now →