This commit is contained in:
merdan 2022-02-08 17:58:40 +05:00
parent 0e29d53ae5
commit 2d1ecfc8f6
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class Carts extends CartController
$cart = Cart::getCart();
return response([
'data' => $cart ? new \Webkul\RestApi\Http\Resources\V1\Shop\Checkout\CartResource($cart) : null,
'data' => $cart ? new CartResource($cart) : null,
'message' => __('rest-api::app.checkout.cart.item.success'),
]);
} catch (Exception $e) {