14 lines
222 B
PHP
14 lines
222 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Providers;
|
||
|
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
class BroadcastServiceProvider extends ServiceProvider
|
||
|
{
|
||
|
public function boot()
|
||
|
{
|
||
|
require base_path('routes/channels.php');
|
||
|
}
|
||
|
}
|