Initial Commit
This commit is contained in:
commit
ddf09fe00c
113 changed files with 187148 additions and 0 deletions
30
routes/web.php
Normal file
30
routes/web.php
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
use App\Http\Livewire\Game;
|
||||
use App\Http\Livewire\Setup;
|
||||
use App\Http\Controllers\SettingController;
|
||||
|
||||
use Illuminate\Support\Facades\Session;
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Web Routes
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here is where you can register web routes for your application. These
|
||||
| routes are loaded by the RouteServiceProvider within a group which
|
||||
| contains the "web" middleware group. Now create something great!
|
||||
|
|
||||
*/
|
||||
|
||||
Route::get('/', function() {
|
||||
return redirect()->route('setup');
|
||||
});
|
||||
|
||||
Route::get('/setup', Setup::class)->name('setup');
|
||||
|
||||
route::get('/setup/{setting}', [ SettingController::class, "hash" ])->name('setup-hash');
|
||||
|
||||
Route::get('/game', Game::class)->name('game');
|
||||
Reference in a new issue