11 lines
255 B
PHP
11 lines
255 B
PHP
<?php
|
|
|
|
use App\Models\Player;
|
|
use Illuminate\Support\Facades\Broadcast;
|
|
|
|
Broadcast::channel(
|
|
'player.{playerId}',
|
|
static fn (Player $player, string $playerId): bool => ctype_digit($playerId)
|
|
&& (string) $player->getKey() === $playerId,
|
|
);
|