first commit

This commit is contained in:
bglacial
2018-09-21 23:52:55 +02:00
commit ecded0947f
123 changed files with 70279 additions and 0 deletions

24
routes/web.php Executable file
View File

@ -0,0 +1,24 @@
<?php
/*
|--------------------------------------------------------------------------
| 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 view('home');
});
Auth::routes();
Route::resource('kart', 'KartController');
Route::resource('pilot', 'PilotController');
Route::resource('race', 'RaceController');
Route::resource('relay', 'RelayController');
Route::get('/home', 'HomeController@index')->name('home');