Files
exchange/app/Providers/BroadcastServiceProvider.php
T
Jack Goh 2ad56b02a6 removed notification seeder
updated boardcasting config
added rate updated notification file
2018-08-16 10:58:54 +08:00

22 lines
440 B
PHP

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\Broadcast;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//Broadcast::routes();
Broadcast::routes(["middleware" => ["auth:api"]]);
require base_path('routes/channels.php');
}
}