2014-11-02 10:02:20 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2016-03-22 13:49:35 -05:00
|
|
|
| Application Routes
|
2014-11-02 10:02:20 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
2016-06-06 21:43:34 -05:00
|
|
|
| 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 given Closure or controller and enjoy the fresh air.
|
2014-11-02 10:02:20 -06:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-03-23 17:04:42 -05:00
|
|
|
Route::get('/', function () {
|
|
|
|
return view('welcome');
|
2015-12-09 11:12:27 -06:00
|
|
|
});
|