*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'product_id' => $this->product_id, 'product_quantity' => $this->product_quantity, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'product' => new ProductResource($this->whenLoaded('product')), ]; } }