ALPHA 3.0.1a

This commit is contained in:
TheGamecraft
2018-07-13 12:41:23 -04:00
commit 51b5bc0500
1339 changed files with 151256 additions and 0 deletions

View File

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