added remember_me cookie config option.

This commit is contained in:
Taylor Otwell
2012-02-01 08:52:57 -06:00
parent ac277c58e6
commit 8066a595bc
2 changed files with 21 additions and 11 deletions

View File

@@ -63,6 +63,19 @@ return array(
|
*/
'logout' => function($user) {}
'logout' => function($user) {},
/*
|--------------------------------------------------------------------------
| "Remember Me" Cookie Name
|--------------------------------------------------------------------------
|
| Here you may specify the cookie name that will be used for the cookie
| that serves as the "remember me" token. Of course, a sensible default
| has been set for you, so you probably don't need to change it.
|
*/
'cookie' => 'laravel_remember',
);