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