LogViewer/code/app/Providers/BroadcastServiceProvider.php
splin94@yandex.ru 8e952437b5 -
2023-11-09 21:22:52 +00:00

22 lines
380 B
PHP
Executable File

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