Lae/routes/channels.php

12 lines
229 B
PHP
Raw Normal View History

2022-09-22 04:18:35 +00:00
<?php
use Illuminate\Support\Facades\Broadcast;
Broadcast::channel('users.{userId}', function ($user, $userId) {
return (int)$user->id === (int)$userId;
2022-09-22 04:18:35 +00:00
});
2022-09-22 06:00:03 +00:00
Broadcast::channel('servers', function () {
return true;
});