Download the PHP package qalainau/filament-team-chat without Composer

On this page you can find all versions of the php package qalainau/filament-team-chat. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package filament-team-chat

Filament Team Chat

A complete Slack-like team chat for Filament v5. Drop it into any panel — channels, DMs, threads, reactions, mentions, file sharing, search, and unread tracking work out of the box. Self-hosted, no external services needed.

Filament v5 Laravel v13 PHP 8.3+ Tests License MIT


Why Filament Team Chat?

Screenshots

Threaded Conversations
Click any message to reply in a side panel — just like Slack.

File Attachments
Share images (with inline preview) and documents.

Dark Mode
Full dark mode support, following your Filament panel theme.

Features

Messaging

Collaboration

Awareness

Management

Technical

Installation

Publish and run the migrations:

Getting Started

1. Register the Plugin

2. Add the Trait to Your User Model

3. Notifications Table (if needed)

Required for @mention and DM notifications:

4. Tailwind CSS Setup

The plugin uses Tailwind CSS classes that must be included in your Filament theme.

If you don't have a custom theme yet, create one first:

Then add the package views as a source in your theme file:

Build the theme:

Done! Visit /admin/team-chat to start chatting.

Configuration

Publish the config file:

Multi-Tenancy

Set tenancy.enabled to true to scope channels and conversations per team. The resolver supports:

Mode Config Behavior
Auto (default) null Uses Filament::getTenant()
Callable fn () => auth()->user()->team_id Custom closure
Class TenantResolver::class Must have resolve() method

Programmatic API

All features are available as PHP classes — useful for seeders, commands, or integrations.

Channels & DMs

Messages

Reactions, Read Tracking, Search

Architecture

Database

All tables use a configurable tc_ prefix:

Table Purpose
tc_channels Public/private channels (optional team_id)
tc_channel_user Channel membership pivot with roles
tc_conversations 1-on-1 and group DMs (optional team_id)
tc_conversation_user DM participant pivot
tc_messages Polymorphic messages (Channel or Conversation)
tc_reactions Emoji reactions per message per user
tc_attachments File metadata (name, path, MIME, size)
tc_mentions @user / @channel / @here per message
tc_read_receipts Per-user last-read tracking (polymorphic)
tc_user_statuses Online status, display name, custom status

Livewire Components

Component Role Updates
Sidebar Channel/DM list, unread badges, create/join 5s poll + event
MessageFeed Messages, reactions, edit/delete, reply 3s poll + event
MessageComposer Input, file upload, @mention autocomplete on submit
ChannelHeader Name, topic, members, settings, archive on event
ThreadPanel Threaded replies with own composer 3s poll
SearchModal Full-text search across channels/DMs on input
MemberList Member list with online status on open
UserProfileCard Profile popup with DM shortcut on open

Testing

102 tests covering channels, DMs, threads, reactions, mentions, attachments, search, read receipts, notifications, user status, and channel management.

Changelog

Please see CHANGELOG for more information on what has changed recently.

License

The MIT License (MIT). Please see License File for more information.


All versions of filament-team-chat with dependencies

PHP Build Version
Package Version
Requires php Version ^8.3
filament/filament Version ^5.0
spatie/laravel-package-tools Version ^1.16
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package qalainau/filament-team-chat contains the following files

Loading the files please wait ...