Commit 02db9866 authored by Taylor Otwell's avatar Taylor Otwell

fixing route.

parent b58c6370
...@@ -35,12 +35,6 @@ ...@@ -35,12 +35,6 @@
Route::get('/', function() 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'); 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