binarcode/nova-chat is a Laravel package for a realtime chat implementation for laravel nova..
It currently has 15 GitHub stars and 995 downloads on Packagist (latest version 1.2.0).
Install it with composer require binarcode/nova-chat.
Discover more Laravel packages by binarcode
or browse all Laravel packages to compare alternatives.
Last updated
This is a laravel nova implementation for a chat. You can manage who can see whom via Laravel Policies.
In the next version the implementation will include real time echo.


You can install the package via composer:
composer require binarcode/nova-chat
Publish the messages table and configuration file.
php artisan vendor:publish --tag=nova-chat
Migrate table:
php artisan migrate
Init chat in your NovaServiceProvider.php tools just import it as:
public function tools()
{
return [
\Binarcode\NovaChat\Tools\ChatTool::make(),
];
}
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.