PHPackages                             karnoweb/laravel-ticket-chat - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. karnoweb/laravel-ticket-chat

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

karnoweb/laravel-ticket-chat
============================

A comprehensive ticketing and messaging system for Laravel applications

13.0.0(1mo ago)065↓92.5%MITPHPPHP ^8.3

Since Feb 7Pushed 1mo agoCompare

[ Source](https://github.com/karnoweb/laravel-ticket-chat)[ Packagist](https://packagist.org/packages/karnoweb/laravel-ticket-chat)[ RSS](/packages/karnoweb-laravel-ticket-chat/feed)WikiDiscussions main Synced 2w ago

READMEChangelogDependencies (17)Versions (6)Used By (0)

Laravel Ticket Chat
===================

[](#laravel-ticket-chat)

A powerful ticketing and messaging system for Laravel applications.

Features
--------

[](#features)

- **Ticket System** – Support ticket management with status, priority, departments
- **Direct Messages** – One-on-one conversations
- **Group Chat** – Multi-user conversations
- **Channels** – Broadcast-style channels
- **Departments** – Organize tickets by department with agents
- **Attachments** – File upload support
- **Real-time** – Broadcasting (Reverb/Pusher) support
- **SLA** – Service level agreements (optional)
- **CSAT** – Customer satisfaction ratings
- **Tags** – Label and organize tickets
- **Canned Responses** – Pre-defined reply templates
- **Internal Notes** – Private agent notes

Requirements
------------

[](#requirements)

- PHP 8.3+
- Laravel 13.x

Installation
------------

[](#installation)

```
# Laravel 13
composer require karnoweb/laravel-ticket-chat:^13.0

# Laravel 10–12
composer require karnoweb/laravel-ticket-chat:^2.0
```

Run the install command:

```
php artisan ticket-chat:install
```

Or manually:

```
php artisan vendor:publish --tag=ticket-chat-config
php artisan vendor:publish --tag=ticket-chat-migrations
php artisan migrate
```

Configuration
-------------

[](#configuration)

Add the traits to your User model:

```
