v2 first commit
This commit is contained in:
21
app/Providers/Broadcast.php
Normal file
21
app/Providers/Broadcast.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\Facades\Broadcast as Facade;
|
||||
use Illuminate\Support\ServiceProvider as Provider;
|
||||
|
||||
class Broadcast extends Provider
|
||||
{
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
Broadcast::routes();
|
||||
|
||||
require base_path('routes/channels.php');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user