akaunting/app/Providers/Broadcast.php
2020-01-29 16:14:19 +03:00

21 lines
328 B
PHP

<?php
namespace App\Providers;
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');
}
}