web.php 716 Bytes
Newer Older
quentin.vrel's avatar
quentin.vrel committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php

use Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| 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!
|
*/

quentin.vrel's avatar
quentin.vrel committed
16 17 18 19
Route::get('/', 'TournamentController@displayTournaments');

Route::get('/home', function () {
    return redirect('/');
quentin.vrel's avatar
quentin.vrel committed
20
});
quentin.vrel's avatar
quentin.vrel committed
21

quentin.vrel's avatar
quentin.vrel committed
22 23 24

Auth::routes();

25
Route::get('/form', 'TournamentController@index');
quentin.vrel's avatar
quentin.vrel committed
26
Route::post('/form', 'TournamentController@createTournament')->name('createTournament');
27 28