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.188.171.53
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 /
Traits /
Delete
Unzip
Name
Size
Permission
Date
Action
Messageable.php
1.33
KB
-rw-r--r--
2021-02-02 18:21
Paginates.php
1.35
KB
-rw-r--r--
2021-02-02 18:21
SetsParticipants.php
939
B
-rw-r--r--
2021-02-02 18:21
Save
Rename
<?php namespace Musonza\Chat\Traits; use Illuminate\Database\Eloquent\Model; trait SetsParticipants { protected $sender; protected $recipient; protected $participant; /** * Sets participant. * * @param Model $participant * * @return $this */ public function setParticipant(Model $participant): self { $this->participant = $participant; return $this; } /** * Sets the participant that's sending the message. * * @param Model $sender * * @return $this */ public function from(Model $sender): self { $this->sender = $sender; return $this; } /** * Sets the participant to receive the message. * * @param Model $recipient * * @return $this */ public function to(Model $recipient): self { $this->recipient = $recipient; return $this; } }