1. Go to this page and download the library: Download soleon/sc-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace App\Events;
use App\Events\Event;
use Illuminate\Queue\SerializesModels;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class PublishToSocketClusterEvent implements ShouldBroadcast
{
use SerializesModels
/**
* Content Message
* @var string
*/
public $message;
/**
* Construct Event
* @param string $message
*/
public function __construct($message)
{
$this->message = $message;
}
/**
* Get the channels the event should broadcast on.
* @return array
*/
public function broadcastOn()
{
return ['channelName'];
}
/**
* Get the data to send.
* @return array
*/
public function broadcastWith()
{
return [
'message' => $this->message
]
}
}