diff --git a/app/routes.php b/app/routes.php index 7bf85f7..3e10dcf 100644 --- a/app/routes.php +++ b/app/routes.php @@ -13,13 +13,5 @@ Route::get('/', function() { - $user = new User; - $cart = new Cart; - $lineitems = array(); - - $lineitems[] = new Lineitem('item 1337'); - $lineitems[] = new Lineitem('item 231'); - $lineitems[] = new Lineitem('item 432'); - - return $cart->checkout($user, $lineitems); -}); \ No newline at end of file + return View::make('hello'); +});