first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-10-18 07:55:02 -04:00
commit 96c87ad857
90 changed files with 11659 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');
}
}