Browse Source

fixing route.

Taylor Otwell 13 years ago
parent
commit
02db986627
1 changed files with 0 additions and 6 deletions
  1. 0 6
      application/routes.php

+ 0 - 6
application/routes.php

@@ -35,12 +35,6 @@
 
 Route::get('/', function()
 {
-	Config::set('database.connections.mysql.password', 'password');
-	Config::set('database.connections.mysql.database', 'bundler');
-	DB::table('users')->get();
-	DB::table('users')->where_id(1)->first();
-	DB::table('users')->where_in('id', array(1, 2, 3))->get();
-	Log::error('Something went wrong!');
 	return View::make('home.index');
 });