PHPackages                             fruitcake/laravel-telescope-toolbar - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. fruitcake/laravel-telescope-toolbar

ActiveLibrary[Debugging &amp; Profiling](/categories/debugging)

fruitcake/laravel-telescope-toolbar
===================================

Toolbar for Laravel Telescope based on Symfony Web Profiler

v1.3.7(2mo ago)8041.6M↑11.4%37[18 issues](https://github.com/fruitcake/laravel-telescope-toolbar/issues)3MITPHPPHP ^8CI failing

Since Aug 12Pushed 2mo ago5 watchersCompare

[ Source](https://github.com/fruitcake/laravel-telescope-toolbar)[ Packagist](https://packagist.org/packages/fruitcake/laravel-telescope-toolbar)[ RSS](/packages/fruitcake-laravel-telescope-toolbar/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (42)Used By (3)

Laravel Telescope Toolbar
-------------------------

[](#laravel-telescope-toolbar)

[![Unit Tests](https://github.com/fruitcake/laravel-telescope-toolbar/workflows/Unit%20Tests/badge.svg)](https://github.com/fruitcake/laravel-telescope-toolbar/workflows/Unit%20Tests/badge.svg)[![Packagist License](https://camo.githubusercontent.com/e60623f508586f049d48cfb8396ee411b0c9bc3be174381a1893c37462a3c1e5/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e63652d4d49542d626c7565)](http://choosealicense.com/licenses/mit/)[![Latest Stable Version](https://camo.githubusercontent.com/320c3be3ce2252714522aeba34e1a98e693c5fb1bd12377884a6fd4fc95315e5/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f667275697463616b652f6c61726176656c2d74656c6573636f70652d746f6f6c6261723f6c6162656c3d537461626c65)](https://packagist.org/packages/fruitcake/laravel-telescope-toolbar)[![Total Downloads](https://camo.githubusercontent.com/a28a2522911718691ac5f1208b6c249e8e56d6e4b4d24599ed8d454b49ba846e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f667275697463616b652f6c61726176656c2d74656c6573636f70652d746f6f6c6261723f6c6162656c3d446f776e6c6f616473)](https://packagist.org/packages/fruitcake/laravel-telescope-toolbar)[![Fruitcake](https://camo.githubusercontent.com/28d7584b52e33d7b4ffb6b1bef8b89b6e598adb45c8c0d5f80349c1c304f385e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f506f776572656425323042792d467275697463616b652d6232626333352e737667)](https://fruitcake.nl/)

### Extends Laravel Telescope to show a powerful Toolbar

[](#extends-laravel-telescope-to-show-a-powerful-toolbar)

See

#### Install

[](#install)

First install Telescope and check it works (see )

```
composer require laravel/telescope
php artisan telescope:install

# Telescope 5.0 no longer automatically loads migrations from its own migrations directory. Instead, you should run the following command to publish Telescope's migrations to your application:
php artisan vendor:publish --tag=telescope-migrations

php artisan migrate
```

Then just install the package with Composer and it will register automatically:

```
composer require fruitcake/laravel-telescope-toolbar --dev
```

The Toolbar will show by default when Telescope is enabled and APP\_DEBUG is true. It can also enabled or disabled using the `TELESCOPE_TOOLBAR_ENABLED` environment variable.

[![image](https://user-images.githubusercontent.com/973269/63676710-d79ad000-c7eb-11e9-8793-c58c6bc25bbe.png)](https://user-images.githubusercontent.com/973269/63676710-d79ad000-c7eb-11e9-8793-c58c6bc25bbe.png)

> Note: The Toolbar is intended for Development environments, not for production.

Publishing the config
---------------------

[](#publishing-the-config)

Run this command to publish the config for this package:

```
php artisan vendor:publish --provider="Fruitcake\\TelescopeToolbar\\ToolbarServiceProvider"
```

#### Current Features

[](#current-features)

- Inject Toolbar for quick info
- Show redirects and Ajax Requests
- Link to related Telescope Entry page
- Show up to 5 entries for collectors, link to details
- Supported Collectors:
    - Request info / timing
    - User auth
    - Database queries
    - Laravel/php version
    - Cache hit/miss/set
    - Logger entries
    - Exceptions
    - Mails
    - Notifications
    - Jobs
    - Dumps (when watching the Dump screen, or using `debug(...$args)`)
    - Number of entries for: Commands/Models/Events

#### Screenshots

[](#screenshots)

Ajax/ Redirects stack:

[![image](https://user-images.githubusercontent.com/973269/63675364-ef248980-c7e8-11e9-8696-dbddd9feb4bd.png)](https://user-images.githubusercontent.com/973269/63675364-ef248980-c7e8-11e9-8696-dbddd9feb4bd.png)

Preview for Exceptions/Mail/Notifications/Log entries with link to details:

[![image](https://user-images.githubusercontent.com/973269/63676030-67d81580-c7ea-11e9-9526-129bec5187f9.png)](https://user-images.githubusercontent.com/973269/63676030-67d81580-c7ea-11e9-9526-129bec5187f9.png)

Counter for Queries (and Cache etc):

[![image](https://user-images.githubusercontent.com/973269/63675578-68bc7780-c7e9-11e9-915d-b955dd070c94.png)](https://user-images.githubusercontent.com/973269/63675578-68bc7780-c7e9-11e9-915d-b955dd070c94.png)

Catch `debug()`/`Toolbar::dump()` calls and show them directly in the Toolbar instead of the page:

[![image](https://user-images.githubusercontent.com/973269/63676511-60653c00-c7eb-11e9-9b8e-9473964a29a8.png)](https://user-images.githubusercontent.com/973269/63676511-60653c00-c7eb-11e9-9b8e-9473964a29a8.png)

Running the Test Suite
----------------------

[](#running-the-test-suite)

- Make sure ChromeDriver is up to date: `vendor/bin/dusk-updater detect --auto-update`
- Create the Sqlite database: `vendor/orchestra/testbench-dusk/create-sqlite-db`
- Run the tests: `composer test`

License and attribution
-----------------------

[](#license-and-attribution)

Laravel Telescope Toolbar is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

### Based on Symfony Web Profiler and Laravel Telescope

[](#based-on-symfony-web-profiler-and-laravel-telescope)

The styling, javascript, some icons and html of the Toolbar and (part of) its Collectors are based on the Symfony Web Profiler. JS/CSS is mostly copied and converted to Blade syntax. Collectors are modified to show Laravel data. See  - © 2004-2019 Fabien Potencier

Data from collectors is provided by Laravel Telescope. Some styling/icons/logic are alse re-used. See  - © Taylor Otwell

###  Health Score

67

—

FairBetter than 100% of packages

Maintenance88

Actively maintained with recent releases

Popularity62

Solid adoption and visibility

Community32

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 83.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~75 days

Recently: every ~284 days

Total

33

Last Release

60d ago

PHP version history (4 changes)v1.0.0-alpha.1PHP ^7.1.3

v1.3.0PHP ^7.3

v1.3.1PHP ^7.3|^8

v1.3.3PHP ^8

### Community

Maintainers

![](https://www.gravatar.com/avatar/dad47b02be23edb7094a151b4b1ce7e9cb56b75cd87cd3341d140e1e1e9cd0e4?d=identicon)[barryvdh](/maintainers/barryvdh)

---

Top Contributors

[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (160 commits)")[![daveismynamecom](https://avatars.githubusercontent.com/u/60222583?v=4)](https://github.com/daveismynamecom "daveismynamecom (3 commits)")[![arjanwestdorp](https://avatars.githubusercontent.com/u/7716654?v=4)](https://github.com/arjanwestdorp "arjanwestdorp (2 commits)")[![binotaliu](https://avatars.githubusercontent.com/u/67255597?v=4)](https://github.com/binotaliu "binotaliu (2 commits)")[![Braunson](https://avatars.githubusercontent.com/u/577273?v=4)](https://github.com/Braunson "Braunson (2 commits)")[![JoeriAben](https://avatars.githubusercontent.com/u/4263996?v=4)](https://github.com/JoeriAben "JoeriAben (2 commits)")[![laravel-shift](https://avatars.githubusercontent.com/u/15991828?v=4)](https://github.com/laravel-shift "laravel-shift (2 commits)")[![chrisvasey](https://avatars.githubusercontent.com/u/7483460?v=4)](https://github.com/chrisvasey "chrisvasey (1 commits)")[![cyrildewit](https://avatars.githubusercontent.com/u/16477999?v=4)](https://github.com/cyrildewit "cyrildewit (1 commits)")[![bilfeldt](https://avatars.githubusercontent.com/u/30228807?v=4)](https://github.com/bilfeldt "bilfeldt (1 commits)")[![gboquizosanchez](https://avatars.githubusercontent.com/u/20032391?v=4)](https://github.com/gboquizosanchez "gboquizosanchez (1 commits)")[![guladima](https://avatars.githubusercontent.com/u/11425189?v=4)](https://github.com/guladima "guladima (1 commits)")[![JeffreyTheTukkr](https://avatars.githubusercontent.com/u/39796883?v=4)](https://github.com/JeffreyTheTukkr "JeffreyTheTukkr (1 commits)")[![victorlap](https://avatars.githubusercontent.com/u/1645632?v=4)](https://github.com/victorlap "victorlap (1 commits)")[![joowdx](https://avatars.githubusercontent.com/u/27247592?v=4)](https://github.com/joowdx "joowdx (1 commits)")[![koenhoeijmakers](https://avatars.githubusercontent.com/u/2232776?v=4)](https://github.com/koenhoeijmakers "koenhoeijmakers (1 commits)")[![Koozza](https://avatars.githubusercontent.com/u/1731647?v=4)](https://github.com/Koozza "Koozza (1 commits)")[![zoispag](https://avatars.githubusercontent.com/u/21138205?v=4)](https://github.com/zoispag "zoispag (1 commits)")[![plegenza](https://avatars.githubusercontent.com/u/37654401?v=4)](https://github.com/plegenza "plegenza (1 commits)")[![rickiewars](https://avatars.githubusercontent.com/u/29739029?v=4)](https://github.com/rickiewars "rickiewars (1 commits)")

---

Tags

hacktoberfestlaraveldebugprofilerdebugbarwebprofilertoolbartelescope

### Embed Badge

![Health badge](/badges/fruitcake-laravel-telescope-toolbar/health.svg)

```
[![Health](https://phpackages.com/badges/fruitcake-laravel-telescope-toolbar/health.svg)](https://phpackages.com/packages/fruitcake-laravel-telescope-toolbar)
```

###  Alternatives

[barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

19.2k124.3M624](/packages/barryvdh-laravel-debugbar)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k662.9k29](/packages/fruitcake-laravel-debugbar)[recca0120/laravel-tracy

A Laravel Package to integrate Nette Tracy Debugger

388283.0k3](/packages/recca0120-laravel-tracy)[snowair/phalcon-debugbar

Integrates PHP Debug Bar with Phalcon.

160123.3k1](/packages/snowair-phalcon-debugbar)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
