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.218.99.99
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 /
tests /
Helpers /
Delete
Unzip
Name
Size
Permission
Date
Action
Transformers
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
factories
[ DIR ]
drwxr-xr-x
2021-02-02 18:21
Models.php
618
B
-rw-r--r--
2021-02-02 18:21
migrations.php
1.2
KB
-rw-r--r--
2021-02-02 18:21
Save
Rename
<?php namespace Musonza\Chat\Tests\Helpers\Models; use Illuminate\Database\Eloquent\Model; use Musonza\Chat\Traits\Messageable; class User extends Model { use Messageable; protected $table = 'mc_users'; } class Client extends Model { use Messageable; protected $table = 'mc_clients'; protected $primaryKey = 'client_id'; public function getParticipantDetails() { return [ 'name' => $this->name, 'foo' => 'bar', ]; } } class Bot extends Model { use Messageable; protected $table = 'mc_bots'; protected $primaryKey = 'bot_id'; }