📡 You're offline — showing cached content
New version available!
Quick Access
Tutorials Laravel Framework Laravel Telescope Debugging

Laravel Telescope Debugging

4 min read
Inspect requests, SQL queries, exceptions, jobs, and mail in the Telescope debug assistant.

Debugging with Telescope

// Telescope records: requests, exceptions, log entries,
// database queries, queued jobs, mail, events, cache hits,
// redis commands, models, scheduled tasks

// Query Inspector — find slow queries
// Shows exact SQL with bindings and execution time

// Exception tracking
// Full stack trace with context variables

// Job monitoring
// See dispatched jobs and their payloads

// Access at: /telescope (local only by default)

// config/telescope.php — filter what to record
"filter" => function (IncomingEntry $entry) {
    return $entry->isReportableException()
        || $entry->isFailedRequest()
        || $entry->isFailedJob()
        || $entry->isScheduledTask()
        || $entry->hasMonitoredTag();
},