Commit 980e965c authored by Taylor Otwell's avatar Taylor Otwell

Fix return.

parent f0a61110
......@@ -34,6 +34,10 @@
Route::get('/', function()
{
//Auth::logout();
Auth::logout();
var_dump(Auth::attempt(array('username' => 'taylorotwell@gmail.com', 'password' => 'secret')));
dd(Auth::user());
return View::make('home.index');
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment