選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
21 行
380 B
21 行
380 B
<?php |
|
|
|
namespace App\Providers; |
|
|
|
use Illuminate\Support\Facades\Broadcast; |
|
use Illuminate\Support\ServiceProvider; |
|
|
|
class BroadcastServiceProvider extends ServiceProvider |
|
{ |
|
/** |
|
* Bootstrap any application services. |
|
* |
|
* @return void |
|
*/ |
|
public function boot() |
|
{ |
|
Broadcast::routes(); |
|
|
|
require base_path('routes/channels.php'); |
|
} |
|
}
|
|
|