create laravel

This commit is contained in:
2023-03-03 08:57:07 +01:00
parent d0df081a5f
commit a60773a6a1
84 changed files with 11266 additions and 1 deletions

View File

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