Laravel - Broadcasting - Broadcast Service Provider
Before broadcasting any events, you will first need to register the App\Providers\BroadcastServiceProvider
. In new Laravel applications, you only need to uncomment this provider in the providers
array of your config/app.php
configuration file. This BroadcastServiceProvider
contains the code necessary to register the broadcast authorization routes and callbacks.