vdlp / oc-telescope-plugin
Laravel Telescope integration for October CMS
Installs: 2 869
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 9
Forks: 2
Open Issues: 1
Type:october-plugin
Requires
- php: ^8.2.0
- composer/installers: ^1.0 || ^2.0
- laravel/telescope: ^5.0
- october/rain: ^4.0
Requires (Dev)
- ergebnis/composer-normalize: ^2.42
This package is auto-updated.
Last update: 2025-08-22 06:55:58 UTC
README
Provides a seamless integration of Laravel Telescope 5.0 inside October CMS.
Laravel Telescope is an elegant debug assistant for the Laravel framework. Telescope provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps and more. Telescope makes a wonderful companion to your local Laravel development environment.
Requirements
- October CMS 4.x or higher
- PHP 8.2.0 or higher
Installation
Install the plugin using composer:
composer require vdlp/oc-telescope-plugin --dev
If you plan to use the Telescope plugin on other than your local development environment, you may install the plugin without the --dev
flag.
Composer.json
Make sure that you're not autodiscovering the laravel/telescope
package in your composer.json
file.
"extra": { "laravel": { "dont-discover": [ "laravel/telescope" ] } }
Run the install
command to install the Telescope assets:
- This will publish the Telescope configuration
config/telescope.php
file - This will publish the Telescope migrations
database/migrations/
files
php artisan telescope:install
Database
Update the migrations:
php artisan october:migrate php artisan migrate
Environment
Make sure your environment is set to local
.
Permissions
- Users must have the proper permissions to access the Telescope Dashboard.
- If backend user is not logged in, access to the Telescope Dashboard will not be granted.
Documentation
Please go to the Laravel website for detailed documentation about Laravel Telescope.
Questions
If you have any question about how to use this plugin, please don't hesitate to contact us at octobercms@vdlp.nl. We're happy to help you. You can also visit the support forum and drop your questions/issues there.