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 : 18.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
musonza /
chat /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Commanding
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Eventing
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Exceptions
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Facades
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Http
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Messages
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Models
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Notifications
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Services
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Traits
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Transformers
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
ValueObjects
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
BaseModel.php
145
B
-rw-r--r--
2021-02-02 18:21
Chat.php
3.2
KB
-rw-r--r--
2021-02-02 18:21
ChatServiceProvider.php
1.57
KB
-rw-r--r--
2021-02-02 18:21
ConfigurationManager.php
732
B
-rw-r--r--
2021-02-02 18:21
Save
Rename
<?php namespace Musonza\Chat; use Illuminate\Support\ServiceProvider; class ChatServiceProvider extends ServiceProvider { /** * Indicates if loading of the provider is deferred. * * @var bool */ protected $defer = false; /** * Bootstrap application services. * * @return void */ public function boot() { $this->publishMigrations(); $this->publishConfig(); if (config('musonza_chat.should_load_routes')) { require __DIR__.'/Http/routes.php'; } } /** * Register application services. * * @return void */ public function register() { $this->registerChat(); } /** * Registers Chat. * * @return void */ private function registerChat() { $this->app->bind('\Musonza\Chat\Chat', function () { return $this->app->make(Chat::class); }); } /** * Publish package's migrations. * * @return void */ public function publishMigrations() { $timestamp = date('Y_m_d_His', time()); $stub = __DIR__.'/../database/migrations/create_chat_tables.php'; $target = $this->app->databasePath().'/migrations/'.$timestamp.'_create_chat_tables.php'; $this->publishes([$stub => $target], 'chat.migrations'); } /** * Publish package's config file. * * @return void */ public function publishConfig() { $this->publishes([ __DIR__.'/../config' => config_path(), ], 'chat.config'); } }