fruitcake/laravel-telescope-toolbar
Pros:
Cons:
web middleware group for toolbar visibility).intl, fileinfo) if not already present.telescope_entries, telescope_monitored_tags) must be satisfied. No additional DB schema changes are needed for the toolbar itself.local, staging, or production environments? How will this be controlled?composer require laravel/telescope
php artisan telescope:install
php artisan migrate
// config/telescope.php
'except' => [
'health-checks',
'webhooks/*',
],
composer require fruitcake/laravel-telescope-toolbar
app/Http/Kernel.php:
protected $middlewareGroups = [
'web' => [
// ...
\Fruitcake\LaravelTelescopeToolbar\Middleware\TelescopeToolbar::class,
],
];
\Fruitcake\LaravelTelescopeToolbar\Middleware\TelescopeToolbar::class => ['except' => ['production/*']],
config/telescope-toolbar.php:
'theme' => 'light',
'position' => 'top', // 'top' or 'bottom'
'show_in' => ['local', 'staging'], // Environments
local/staging environments.session, fileinfo, and intl extensions are enabled (Symfony Profiler dependencies).local environments; train developers on toolbar features.telescope.php and telescope-toolbar.php for outdated or redundant settings.prune command to manage entry retention:
php artisan telescope:prune --hours=24
How can I help you explore Laravel packages today?