2014-11-02 10:02:20 -06:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
2015-12-11 16:31:19 -06:00
|
|
|
| Routes File
|
2014-11-02 10:02:20 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
2015-12-05 21:52:46 -06:00
|
|
|
| Here is where you can register all of the routes in an application.
|
2014-11-02 10:02:20 -06:00
|
|
|
| It's a breeze. Simply tell Laravel the URIs it should respond to
|
2014-11-26 11:34:18 -06:00
|
|
|
| and give it the controller to call when that URI is requested.
|
2014-11-02 10:02:20 -06:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2015-04-21 14:42:23 -05:00
|
|
|
Route::get('/', function () {
|
|
|
|
|
return view('welcome');
|
|
|
|
|
});
|
2015-12-09 11:12:27 -06:00
|
|
|
|
|
|
|
|
/*
|
2015-12-11 16:31:19 -06:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Application Routes
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
2015-12-09 11:12:27 -06:00
|
|
|
| This route group applies the "web" middleware group to every route
|
|
|
|
|
| it contains. The "web" middleware group is defined in your HTTP
|
|
|
|
|
| kernel and includes session state, CSRF protection, and more.
|
2015-12-11 16:31:19 -06:00
|
|
|
|
|
2015-12-09 11:12:27 -06:00
|
|
|
*/
|
|
|
|
|
|
2015-12-11 16:49:20 -06:00
|
|
|
Route::group(['middleware' => ['web']], function () {
|
2015-12-09 11:12:27 -06:00
|
|
|
//
|
|
|
|
|
});
|