Skip to main content

Posts

Showing posts with the label Monitoring

How to Set Up & Use Laravel Telescope

How to Set Up & Use Laravel Telescope Laravel Telescope is a powerful debugging and monitoring tool built by the Laravel team. It provides detailed insights into your application’s requests, exceptions, database queries, jobs, mail, notifications, cache, and more—all in an elegant dashboard. 🚀 What is Laravel Telescope? Laravel Telescope acts as a “developer’s black box,” recording everything that happens within your Laravel app. It’s especially useful during development and staging to track performance issues, failed jobs, or unexpected behavior. 🧩 Step 1: Install Telescope Run the following Composer command in your Laravel project directory: composer require laravel/telescope --dev The --dev flag ensures Telescope is only installed in your local development environment. ⚙️ Step 2: Publish Telescope Assets Once the package is installed, publish the Telescope service provider and assets: php artisan tel...