This commit is contained in:
2024-07-12 18:57:24 +02:00
parent c5842e58f2
commit 1d93997d82
85 changed files with 11117 additions and 0 deletions
@@ -0,0 +1,21 @@
<?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');
}
}