| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace App\Events;
- 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;
- class CredentialAdded implements ShouldBroadcast
- {
- use Dispatchable, InteractsWithSockets, SerializesModels;
- public $credential;
- /**
- * Create a new event instance.
- *
- * @return void
- */
- public function __construct($credential)
- {
- $this->credential = $credential;
- }
- /**
- * Get the channels the event should broadcast on.
- *
- * @return \Illuminate\Broadcasting\Channel|array
- */
- public function broadcastOn()
- {
- if ($this->credential->pcid != 0) {
- return new Channel('credlist.pcid.'.$this->credential->pcid);
- } else {
- return new Channel('credlist.groupid.'.$this->credential->groupid);
- }
- }
- }
|