This commit is contained in:
TiclemFR
2023-12-29 15:42:55 +01:00
parent e42da70aca
commit 9d79d7c0c6
79 changed files with 11232 additions and 24 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Broadcast;
use Illuminate\Support\ServiceProvider;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*/
public function boot(): void
{
Broadcast::routes();
require base_path('routes/channels.php');
}
}