Browse Source

update default routes file

Taylor Otwell 8 years ago
parent
commit
1d5e88d0fb
1 changed files with 6 additions and 17 deletions
  1. 6 17
      app/Http/routes.php

+ 6 - 17
app/Http/routes.php

@@ -2,30 +2,19 @@
 
 /*
 |--------------------------------------------------------------------------
-| Routes File
+| Application Routes
 |--------------------------------------------------------------------------
 |
-| Here is where you will register all of the routes in an application.
+| Here is where you can register all of the routes for an application.
 | It's a breeze. Simply tell Laravel the URIs it should respond to
 | and give it the controller to call when that URI is requested.
 |
 */
 
-Route::get('/', function () {
-    return view('welcome');
-});
+Route::group(['middleware' => ['web']], function () {
 
-/*
-|--------------------------------------------------------------------------
-| Application Routes
-|--------------------------------------------------------------------------
-|
-| 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.
-|
-*/
+    Route::get('/', function () {
+        return view('welcome');
+    });
 
-Route::group(['middleware' => ['web']], function () {
-    //
 });