Paragonik/paragonik-backend/routes/web.php

21 lines
531 B
PHP
Raw Normal View History

2019-12-08 21:41:24 +01:00
<?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('welcome');
});
2019-12-09 16:22:29 +01:00
#Auth::routes();
Route::get('/home', 'HomeController@index')->name('home');