|
@@ -10,27 +10,19 @@ use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
|
|
+use App\Models\Comment;
|
|
|
+
|
|
|
class CommentAdded
|
|
|
{
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
|
|
- /**
|
|
|
- * Create a new event instance.
|
|
|
- */
|
|
|
- public function __construct()
|
|
|
- {
|
|
|
- //
|
|
|
- }
|
|
|
+ public Comment $comment;
|
|
|
|
|
|
/**
|
|
|
- * Get the channels the event should broadcast on.
|
|
|
- *
|
|
|
- * @return array<int, \Illuminate\Broadcasting\Channel>
|
|
|
+ * Create a new event instance.
|
|
|
*/
|
|
|
- public function broadcastOn(): array
|
|
|
+ public function __construct(Comment $comment)
|
|
|
{
|
|
|
- return [
|
|
|
- new PrivateChannel('channel-name'),
|
|
|
- ];
|
|
|
+ $this->comment = $comment;
|
|
|
}
|
|
|
}
|