1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-29 19:57:08 +02:00
my-idlers/app/Providers/BroadcastServiceProvider.php

22 lines
380 B
PHP
Raw Normal View History

<?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');
}
}