$this->id, 'sku' => $this->when($this->relationLoaded('sku'), function () { if ($this->sku) { return ProductSkuSimpleResource::make($this->sku); } return [ 'id' => $this->id, 'name' => $this->name, 'cover' => (string) $this->cover, 'sell_price' => $this->sell_price_format, 'vip_price' => (string) $this->vip_price_format, 'specs' => array_values((array) $this->specs), 'stock' => 0, 'is_online' => false, ]; }), 'quantity' => $this->quantity, ]; } }