summaryrefslogtreecommitdiff
path: root/routes/channels.php
blob: df2ad287ec14d0c78835dc930dcc86a0bba9d9d8 (plain)
1
2
3
4
5
6
7
<?php

use Illuminate\Support\Facades\Broadcast;

Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
    return (int) $user->id === (int) $id;
});