2017-08-27 04:44:53 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Broadcast;
|
2019-01-15 00:05:01 +09:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2017-08-27 04:44:53 +09:00
|
|
|
|
|
|
|
class BroadcastServiceProvider extends ServiceProvider
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
|
|
|
Broadcast::routes();
|
|
|
|
|
|
|
|
require base_path('routes/channels.php');
|
|
|
|
}
|
|
|
|
}
|