private function getInstance($id = null)
 {
     if (isset($id)) {
         return Product::find($id);
     }
     return new Product();
 }