LogViewer/code/app/Providers/BroadcastServiceProvider.php
splin94@yandex.ru 3a4a328d80 -
2023-11-09 20:51:08 +00:00

22 lines
380 B
PHP
Executable File

<?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();
require base_path('routes/channels.php');
}
}