Redirect route with two parameters in WITH [Laravel]
You may try this:
return Redirect::route('cart-success')
->with('cartSuccess', 'You successfuly ordered. To track your order processing check your email')
->with('cartItems', Cart::contents());
Or this:
return Redirect::route('cart-success', array('cartSuccess' => '...', 'cartItems' => '...'));