Documentation / Installation
Documentation
- Getting Started
- Installation
- Frontend Setup
- Theming
- User Model
- Authorization
- Configuration
- Routes
- Tickets
- Public Tickets
- Bulk Actions
- Conversations
- Statuses & Priorities
- SLAs & Escalation
- Macros
- Automation Types
- Custom Ticket Actions
- Automations
- Newsletters
- Workflows
- Followers
- Satisfaction Ratings
- Collaboration
- Keyboard Shortcuts
- Events
- Scheduling
- Notifications
- Inbound Email
- Importing Data
- Single Sign-On
- REST API
- Management Commands
- Mobile SDKs
- Contributing
- Plugin Development
- Compare
Installation
Choose your framework to see the backend installation instructions.
1. Require the package
composer require escalated-dev/escalated-laravel
2. Run the installer
This publishes migrations, config, and sets up the database tables.
php artisan escalated:install
php artisan migrate
3. Publish the configuration (optional)
php artisan vendor:publish --tag=escalated-config
Note: Routes register automatically via the service provider. No need to add anything to
routes/web.php.
Headless mode (optional)
To run Escalated without the built-in Inertia UI, add this to your .env:
ESCALATED_UI_ENABLED=false
In headless mode, API routes, management commands, events, and the plugin runtime continue to work. See Configuration for details on custom renderers.