*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'tenant_codigo' => $this->tenant_codigo, 'categoria_id' => $this->categoria_id, 'slug' => $this->slug, 'nombre' => $this->nombre, 'descripcion' => $this->descripcion, 'precio' => $this->precio, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]; } }