Toolbar for Laravel Telescope based on Symfony Web Profiler
fruitcake/laravel-telescope-toolbar is a Laravel package for toolbar for laravel telescope based on symfony web profiler.
It currently has 806 GitHub stars and 1.719.614 downloads on Packagist (latest version v1.3.7).
Install it with composer require fruitcake/laravel-telescope-toolbar.
Discover more Laravel packages by fruitcake
or browse all Laravel packages to compare alternatives.
Last updated
See https://github.com/laravel/telescope
First install Telescope and check it works (see https://laravel.com/docs/master/telescope)
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.

Note: The Toolbar is intended for Development environments, not for production.
Run this command to publish the config for this package:
php artisan vendor:publish --provider="Fruitcake\\TelescopeToolbar\\ToolbarServiceProvider"
debug(...$args))Ajax/ Redirects stack:

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

Counter for Queries (and Cache etc):

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

vendor/bin/dusk-updater detect --auto-updatevendor/orchestra/testbench-dusk/create-sqlite-dbcomposer testLaravel Telescope Toolbar is open-sourced software licensed under the MIT license.
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 https://github.com/symfony/web-profiler-bundle - © 2004-2019 Fabien Potencier
Data from collectors is provided by Laravel Telescope. Some styling/icons/logic are alse re-used. See https://github.com/laravel/telescope - © Taylor Otwell