1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-03-26 16:30:09 +01:00
LinkStack/app/Providers/BroadcastServiceProvider.php

22 lines
380 B
PHP
Raw Normal View History

2021-04-16 03:30:00 +04:30
<?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');
}
}