From 02db9866274456d371f5b6a436e7662598898ac0 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 3 Apr 2012 17:07:56 -0500 Subject: [PATCH] fixing route. --- application/routes.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/application/routes.php b/application/routes.php index 2b09d557..91d17aa9 100644 --- a/application/routes.php +++ b/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'); });