|
|
@@ -0,0 +1,42 @@
|
|
|
+<?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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|