Service Desk
CommunityFilament plugin for complete service desk management — Admin, Agent, and User panels for tickets, SLA, and customer support.
Author:
Jefferson Gonçalves
Package health
BetaAutomated checks of this plugin's Composer package
15 checks
- Skipped: GitHub Actions pinned to SHA
- Skipped: GitLab CI includes pinned to SHA
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- Skipped: Renovate MR responsiveness
- Skipped: Dependabot or Renovate configured
- Skipped: Dependency update cooldown configured
- Passed: Provides a security policy
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Passed: Commit and release recency — Active: last commit 91 days ago; last release 99 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Warning: Dist archive is lean
-
Passed:
Current Laravel version supported
—
Package dependencies resolve together with current Laravel
13.0. -
Passed:
Current PHP version supported
—
Constraint
^8.2supports current PHP8.5. - Skipped: Current Symfony version supported
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
- Compatibility
- Installation
- Usage
- Feature Toggles
- Customizing Widgets
- Upgrade from 3.0.x
- Attachments Configuration
- Localization
- Testing
- Changelog
- Contributing
- License

A Filament plugin for jeffersongoncalves/laravel-service-desk that provides Admin, Agent, and User panels for complete service desk management.
#Compatibility
| Version | Filament | PHP | Laravel | Tailwind |
|---|---|---|---|---|
| 1.x | ^3.0 | ^8.1 | ^10.0 | 3.x |
| 2.x | ^4.0 | ^8.2 | ^11.0 | 4.x |
| 3.x | ^5.0 | ^8.2 | ^11.28 | 4.x |
#Installation
You can install the package via composer:
composer require jeffersongoncalves/filament-service-desk:"^3.0"
Publish the configuration (optional):
php artisan vendor:publish --tag="filament-service-desk-config"
#Usage
#Admin Panel
Full management capabilities: departments, categories, tags, tickets, SLA, email channels, knowledge base, and service catalog.
use JeffersonGoncalves\FilamentServiceDesk\ServiceDeskAdminPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
ServiceDeskAdminPlugin::make()
->knowledgeBase(true)
->sla(true)
->emailChannels(true)
->serviceCatalog(true)
->navigationGroup('Service Desk'),
]);
}
Resources: Department, Category, Tag, Canned Response, Ticket (with comments, attachments, history, watchers), SLA Policy (with targets, escalation rules), Business Hours Schedule (with time slots, holidays), Email Channel, KB Article (with versions, feedback), KB Category, Service (with form fields), Service Category.
Widgets: Service Desk Overview, SLA Compliance Chart, Tickets by Department Chart.
#Agent Panel
Ticket handling and response for support agents.
use JeffersonGoncalves\FilamentServiceDesk\ServiceDeskAgentPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
ServiceDeskAgentPlugin::make(),
]);
}
Resources: Ticket (scoped to assigned), Canned Responses (read-only).
Pages: Ticket Queue (claim unassigned tickets), Agent Dashboard.
Widgets: Agent Ticket Stats, SLA Breach Table.
#User Panel
Self-service portal for end users.
use JeffersonGoncalves\FilamentServiceDesk\ServiceDeskUserPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
ServiceDeskUserPlugin::make()
->knowledgeBase(true)
->serviceCatalog(true),
]);
}
Resources: Ticket (create/view own), Service Request (wizard with dynamic form).
Pages: Knowledge Base (search, browse, feedback).
Widgets: My Tickets Overview.
#Feature Toggles
Each plugin supports fluent feature toggles:
| Method | Default | Description |
|---|---|---|
knowledgeBase(bool) |
true |
KB articles and categories |
sla(bool) |
true |
SLA policies, targets, escalation |
emailChannels(bool) |
true |
Email channel management |
serviceCatalog(bool) |
true |
Service catalog and requests |
Features can also be toggled globally in config/filament-service-desk.php.
#Customizing Widgets
Each panel's dashboard widgets can be customized via the configuration file. Widgets are now scoped under each panel key (admin, agent, user):
// config/filament-service-desk.php
'admin' => [
// ...
'widgets' => [
\JeffersonGoncalves\FilamentServiceDesk\Admin\Widgets\ServiceDeskOverviewWidget::class,
\JeffersonGoncalves\FilamentServiceDesk\Admin\Widgets\SlaComplianceWidget::class,
\JeffersonGoncalves\FilamentServiceDesk\Admin\Widgets\TicketsByDepartmentWidget::class,
// Add your custom widgets here
],
],
'agent' => [
// ...
'widgets' => [
\JeffersonGoncalves\FilamentServiceDesk\Agent\Widgets\AgentTicketStatsWidget::class,
\JeffersonGoncalves\FilamentServiceDesk\Agent\Widgets\SlaBreachWidget::class,
],
],
'user' => [
// ...
'widgets' => [
\JeffersonGoncalves\FilamentServiceDesk\User\Widgets\MyTicketsOverviewWidget::class,
],
],
To disable all widgets for a panel, set its widgets key to an empty array:
'admin' => [
// ...
'widgets' => [], // No widgets on admin dashboard
],
#Upgrade from 3.0.x
Breaking changes introduced in 3.2.0:
- Class
ServiceDeskPluginwas renamed toServiceDeskAdminPlugin. - Plugin ID changed from
filament-service-desktofilament-service-desk-admin. - The published
config/filament-service-desk.phpwas restructured from the feature-scoped shape (navigation.admin|agent|user,resources.admin|agent|user,widgets.admin|agent|user) to a panel-scoped shape that matchesjeffersongoncalves/filament-help-desk.
Update your panel providers:
-use JeffersonGoncalves\FilamentServiceDesk\ServiceDeskPlugin;
+use JeffersonGoncalves\FilamentServiceDesk\ServiceDeskAdminPlugin;
return $panel->plugins([
- ServiceDeskPlugin::make(),
+ ServiceDeskAdminPlugin::make(),
]);
If you previously published the config, republish it with --force:
php artisan vendor:publish --tag="filament-service-desk-config" --force
#Attachments Configuration
Configure file upload settings for ticket attachments in the configuration file:
// config/filament-service-desk.php
'attachments' => [
'allowed_extensions' => ['jpg', 'jpeg', 'png', 'gif', 'webp', 'pdf', 'doc', 'docx', 'xls', 'xlsx', 'csv', 'txt', 'zip', 'rar'],
'max_file_size' => 10240, // in KB (10MB)
'disk' => 'local',
],
| Option | Default | Description |
|---|---|---|
allowed_extensions |
Common file types | File extensions resolved to MIME types via Symfony MimeTypes |
max_file_size |
10240 (10MB) |
Maximum file size in kilobytes |
disk |
local |
Filesystem disk for storing attachments |
#Localization
Translations are provided for:
- English (
en) - Brazilian Portuguese (
pt_BR)
Publish translations to customize:
php artisan vendor:publish --tag="filament-service-desk-translations"
#Testing
composer test
#Changelog
Please see CHANGELOG for more information on what has changed recently.
#Contributing
Please see CONTRIBUTING for details.
#License
The MIT License (MIT). Please see License File for more information.
The author
I'm a Full Stack PHP Developer from Assis, SP, Brazil with over 18 years of hands-on experience building robust platforms, managing server infrastructures, and crafting scalable solutions for businesses of all sizes.
My passion lives in the open source world — I actively maintain 20+ Filament plugins and a growing collection of Laravel packages used by thousands of developers worldwide. I believe great software should be accessible to everyone.
From the same author
EvolutionKit v5
A robust starter kit built on Laravel 13.x and Filament 5.x, designed to accelerate the development of modern web applications with a ready-to-use multi-panel structure.
Author:
Jefferson Gonçalves
MFAKit v5
MFAKit is a robust starter kit built on Laravel 13.x and Filament 5.x, designed to accelerate the development of modern web applications with a ready-to-use multi-panel structure.
Author:
Jefferson Gonçalves
Refresh Sidebar
Automatically refresh the sidebar navigation when certain events occur, ensuring menu items and badges are always up to date.
Author:
Jefferson Gonçalves
FilaKit v5
FilaKit is a robust starter kit, designed to accelerate the development of modern web applications with a ready-to-use multi-panel structure.
Author:
Jefferson Gonçalves
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament