chat
chat copied to clipboard
A Laravel chat package. You can use this package to create a chat/messaging Laravel application.
$conversation = Chat::conversations()->between($participantModel1, $participantModel2); is not work
I try $user1 = User::find(1); $user2 = User::find(2); $conversation = Chat::conversations()->between($user1, $user2); return $conversation; in my controller
Non-static method 'createConversation' should not be called statically 1- When Changing "use Musonza\Chat\Chat" to "use Chat" i get Class 'Chat' not found 2- When adding the facade Chat to config/app.php...
now the data can be saved on another connection using the db_connection config variable
According to the documentation, you can **Get common conversations among participants** using: ``` $conversations = Chat::conversations()->common($participants); ``` But that method doesn't exist. **Steps to reproduce the behavior:** ``` $participants =...
This allows developers to override default connection on package models by adding a key of `database_connection` in `config/musonza_chat.php`. I would like to use this in a project I am working...
I'm trying to retrieve a list of all the `Models` (participants) that a certain `Model` ever had a conversation with. My chat screen has 3 columns: 1. list of contacts...
The sorting options for conversation lists did not work, this enables support for sorting by newest or oldest
Hi there, im just submitting this pull request so you can pass in your own custom broadcast event, this just helped me with the laravel 7 dateTime formatting for json...
Hi, Just like to say great package firstly, I'm looking for a way to also include all the message notifications with the message so i can see if the other...