-
-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathlaravel-video-chat.php
33 lines (32 loc) · 1013 Bytes
/
laravel-video-chat.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* Created by PhpStorm.
* User: nyinyilwin
* Date: 10/16/17
* Time: 1:51 PM.
*/
return [
'relation' => [
'conversations' => PhpJunior\LaravelVideoChat\Models\Conversation\Conversation::class,
'group_conversations' => PhpJunior\LaravelVideoChat\Models\Group\Conversation\GroupConversation::class,
],
'user' => [
'model' => App\User::class,
'table' => 'users', // Existing user table name
],
'table' => [
'conversations_table' => 'conversations',
'messages_table' => 'messages',
'group_conversations_table' => 'group_conversations',
'group_users_table' => 'group_users',
'files_table' => 'files',
],
'channel' => [
'new_conversation_created' => 'new-conversation-created',
'chat_room' => 'chat-room',
'group_chat_room' => 'group-chat-room',
],
'upload' => [
'storage' => 'public',
],
];