質問編集履歴

2

2016/11/29 10:31

投稿

gomengo
gomengo

スコア51

test CHANGED
File without changes
test CHANGED
@@ -199,3 +199,7 @@
199
199
  よろしくお願いいたします。
200
200
 
201
201
  ソースは、多少、省略しています。
202
+
203
+
204
+
205
+ 後、ある処理をしてから、ログインをしたいので、こんなロジックになってます...

1

web/route\.phpの変更

2016/11/29 10:31

投稿

gomengo
gomengo

スコア51

test CHANGED
File without changes
test CHANGED
@@ -174,15 +174,11 @@
174
174
 
175
175
  Route::auth();
176
176
 
177
- Route::group(['middleware' => 'auth:web'], function () {
178
-
179
- Route::get('/home', 'HomeController@index');
177
+ Route::get('/home', 'HomeController@index');
180
-
178
+
181
- //authのログイン認証チェック
179
+ //authのログイン認証チェック
182
-
180
+
183
- Route::post('/auth/redirect', 'Auth\AuthController@redirect');
181
+ Route::post('/auth/redirect', 'Auth\AuthController@redirect');
184
-
185
- });
186
182
 
187
183
 
188
184