Files
project-minnesota/routes/channels.php

8 lines
163 B
PHP
Raw Normal View History

2024-06-01 03:10:49 +02:00
<?php
use Illuminate\Support\Facades\Broadcast;
Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});