From b106e010710acf5c48f669bb04a63cd7e9a80064 Mon Sep 17 00:00:00 2001 From: Kelt Dockins Date: Thu, 15 May 2014 09:37:08 -0500 Subject: [PATCH] routes.php is set to default --- app/routes.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) 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'); +});