Esempio n. 1
0
 public function link(Product $product, sosProduct $sos)
 {
     /*
      * first restore the product just to be safe
      * but i'm not 100% sure how the restoring process works, so it might skip saving dirty fields other then the deleted at column.
      */
     $product->restore();
     $product->sos_prod_id = $sos->ID;
     $product->save();
 }