PHP code example of pbmedia / laravel-single-session
1. Go to this page and download the library: Download pbmedia/laravel-single-session 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/ */
pbmedia / laravel-single-session example snippets
namespace App\Events;
class UserSessionWasDestroyed
{
public $user;
public $sessionId;
public function __construct($user, $sessionId)
{
$this->user = $user;
$this->sessionId = $sessionId;
}
public function broadcastOn()
{
// return new PrivateChannel('channel-name');
}
public function broadcastWith()
{
return ['user_id' => $this->user->id];
}
}