public function download_image_product($id)
 {
     $data = ProdcutImageModel::findOrfail($id);
     return response()->download($data->image_path);
 }