You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are trying to use the checkout save address functionality to set both shipping and billing addresses of the cart, but the response of the cart returns addresses with empty address1
An alternative way to solve this whole file is extending CartAddressResource from Webkul\Shop\Http\Resources\AddressResource
File:
Webkul\RestApi\Http\Resources\V1\Shop\Checkout\CartAddressResource
Line: 23
Current:
'address1' => explode(PHP_EOL, $this->address1),
Change request:
'address' => explode(PHP_EOL, $this->address),
We are trying to use the checkout save address functionality to set both shipping and billing addresses of the cart, but the response of the cart returns addresses with empty address1
An alternative way to solve this whole file is extending
CartAddressResource
fromWebkul\Shop\Http\Resources\AddressResource
and then something like
The text was updated successfully, but these errors were encountered: