public function productSkus()
{
return $this->belongsToMany(ProductSku::class, 'product_sku_user_order')
->withPivot('quantity', 'price', 'product_name', 'product_variation', 'servings')
->withTrashed()
->withTimestamps()
->as('userOrderItem');
}
public function productSkus()
{
return $this->belongsToMany(ProductSku::class, 'product_sku_user_order')
->withPivot('quantity', 'price', 'product_name', 'product_variation', 'servings')
->withTrashed()
->withTimestamps()
->as('userOrderItem');
}