/**
  * Remove a product from the cart by its ID.
  */
 public static function removeById($id)
 {
     $cm = new CartModel();
     $cm->removeById($id);
 }