File tree 1 file changed +6
-17
lines changed
1 file changed +6
-17
lines changed Original file line number Diff line number Diff line change 2
2
3
3
/*
4
4
|--------------------------------------------------------------------------
5
- | Routes File
5
+ | Application Routes
6
6
|--------------------------------------------------------------------------
7
7
|
8
- | Here is where you will register all of the routes in an application.
8
+ | Here is where you can register all of the routes for an application.
9
9
| It's a breeze. Simply tell Laravel the URIs it should respond to
10
10
| and give it the controller to call when that URI is requested.
11
11
|
12
12
*/
13
13
14
- Route::get ('/ ' , function () {
15
- return view ('welcome ' );
16
- });
14
+ Route::group (['middleware ' => ['web ' ]], function () {
17
15
18
- /*
19
- |--------------------------------------------------------------------------
20
- | Application Routes
21
- |--------------------------------------------------------------------------
22
- |
23
- | This route group applies the "web" middleware group to every route
24
- | it contains. The "web" middleware group is defined in your HTTP
25
- | kernel and includes session state, CSRF protection, and more.
26
- |
27
- */
16
+ Route::get ('/ ' , function () {
17
+ return view ('welcome ' );
18
+ });
28
19
29
- Route::group (['middleware ' => ['web ' ]], function () {
30
- //
31
20
});
You can’t perform that action at this time.
0 commit comments