Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report

laravel/telescope v4.17.4

An elegant debug assistant for the Laravel framework.
Package summary
Share
0
issues
0
licenses
Package created
23 Oct 2018
Version published
22 Jan 2024
Maintainers
1
Total deps
0
Direct deps
0
License
MIT
Generating a report...
Hold on while we generate a fresh audit report for this package.

Frequently Asked Questions

What does laravel/telescope do?

Laravel/Telescope is a refined debug assistant specifically designed for the Laravel framework. It provides users with profound insights into the requests coming into their application. It's an ideal tool for monitoring exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, and variable dumps. It especially shines as a companion tool for local Laravel development environments, offering an in-depth look into your application's performance and behavior.

How do you use laravel/telescope?

To use Laravel/Telescope, you first need to install the package via Composer:

composer require laravel/telescope

After installing Telescope, publish its assets using the telescope:install Artisan command:

php artisan telescope:install

You may need to run migrations after installation:

php artisan migrate

Once installed, Telescope provides a dashboard available at your app’s /telescope path. Access to this path is controlled by the viewTelescope Gate in your AuthServiceProvider.

Where are the laravel/telescope docs?

Laravel/Telescope's official documentation can be found on the Laravel website: https://laravel.com/docs/telescope. The documentation covers further details on installation, configuration, and usage of this comprehensive debug assistant for Laravel applications.