Browse Source

add property by default

Taylor Otwell 9 years ago
parent
commit
58bc5273b8
1 changed files with 7 additions and 0 deletions
  1. 7 0
      app/Http/Controllers/Auth/AuthController.php

+ 7 - 0
app/Http/Controllers/Auth/AuthController.php

@@ -23,6 +23,13 @@ class AuthController extends Controller
 
     use AuthenticatesAndRegistersUsers, ThrottlesLogins;
 
+    /**
+     * Where to redirect users after login / registration.
+     *
+     * @var string
+     */
+    protected $redirectTo = '/home';
+
     /**
      * Create a new authentication controller instance.
      *