Files
salt-minv-graph/routes/channels.php
Jaroslav Drzik 575b55bdc2 Migracia na 6.0
- oprava chyb v log
- welcome.blade url uprava
2020-03-25 14:52:08 +01:00

17 lines
508 B
PHP
Executable File

<?php
/*
|--------------------------------------------------------------------------
| 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.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});