Files
Aigo/routes/channels.php
T
2026-06-04 20:58:26 +07:00

8 lines
163 B
PHP

<?php
use Illuminate\Support\Facades\Broadcast;
Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});