Initial Commit

This commit is contained in:
shibafu
2017-08-27 04:44:53 +09:00
commit be2cf3328a
114 changed files with 32069 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');
}
}