/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $products = Product::browse(['order' => ['id' => 'desc'], 'limit' => (int) Input::get('limit') ? (int) Input::get('limit') : 25, 'cursor' => Input::get('cursor')]);
     return response()->json(arrayView('product/browse', ['products' => $products]), 200);
 }