Fix return.

This commit is contained in:
Taylor Otwell
2012-05-02 16:04:54 -05:00
parent f0a6111021
commit 980e965cab
+4
View File
@@ -34,6 +34,10 @@
Route::get('/', function()
{
//Auth::logout();
Auth::logout();
var_dump(Auth::attempt(array('username' => '[email protected]', 'password' => 'secret')));
dd(Auth::user());
return View::make('home.index');
});