Browse Source

Fix return.

Taylor Otwell 12 years ago
parent
commit
980e965cab
1 changed files with 4 additions and 0 deletions
  1. 4 0
      application/routes.php

+ 4 - 0
application/routes.php

@@ -34,6 +34,10 @@
 
 
 Route::get('/', function()
 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');
 	return View::make('home.index');
 });
 });