8 lines
116 B
PHP
8 lines
116 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Broadcast;
|
|
|
|
Broadcast::channel('chatroom', function () {
|
|
return true;
|
|
});
|