Files
phpvms/routes/web.php
2017-06-08 14:16:50 -05:00

21 lines
514 B
PHP
Executable File

<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of the routes that are handled
| by your application. Just tell Laravel the URIs it should respond
| to using a Closure or controller method. Build something great!
|
*/
Route::get('/', function () {
return redirect('home');
});
Auth::routes();
Route::get('/home', 'HomeController@index');