channels.php 163 B

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