123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace App\Events\LiveStream;
- use Illuminate\Broadcasting\Channel;
- use Illuminate\Broadcasting\InteractsWithSockets;
- use Illuminate\Broadcasting\PresenceChannel;
- use Illuminate\Broadcasting\PrivateChannel;
- use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- use App\Models\LiveStream;
- class BanUser implements ShouldBroadcast
- {
- use Dispatchable, InteractsWithSockets, SerializesModels;
- public $livestream;
- public $profileId;
- /**
- * Create a new event instance.
- *
- * @return void
- */
- public function __construct(LiveStream $livestream, $profileId)
- {
- $this->livestream = $livestream;
- $this->profileId = $profileId;
- }
- /**
- * Get the channels the event should broadcast on.
- *
- * @return \Illuminate\Broadcasting\Channel|array
- */
- public function broadcastOn()
- {
- return new Channel('live.chat.' . $this->livestream->profile_id);
- }
- public function broadcastAs()
- {
- return 'chat.ban-user';
- }
- public function broadcastWith()
- {
- return ['id' => $this->profileId];
- }
- }
|