category default limit

This commit is contained in:
merdan 2022-03-10 13:53:58 +05:00
parent 4c1d795e1a
commit 79452f85f2
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class OrderItemResource extends JsonResource
'product' => $this->when($this->product_id, new CartItemProduct($this->product)),
'coupon_code' => $this->coupon_code,
'weight' => (double) $this->weight,
'total_weight' => $this->total_weight,
'total_weight' => (double) $this->total_weight,
'qty_ordered' => (int) $this->qty_ordered,
'qty_canceled' => (int) $this->qty_canceled,
'qty_invoiced' => (int) $this->qty_invoiced,