laravel-template/routes/channels.php
2023-11-01 10:56:35 +08:00

20 lines
584 B
PHP

<?php
use App\Models\User;
use Illuminate\Support\Facades\Broadcast;
/*
|--------------------------------------------------------------------------
| Broadcast Channels
|--------------------------------------------------------------------------
|
| Here you may register all of the event broadcasting channels that your
| application supports. The given channel authorization callbacks are
| used to check if an authenticated user can listen to the channel.
|
*/
Broadcast::channel('App.Models.User.{id}', function (User $user, $id) {
return (int) $user->id === (int) $id;
});