/**
  * Remove the specified resource from storage.
  *
  * @param int $id
  *
  * @return Response
  */
 public function destroy($id)
 {
     $this->product->destroy($id);
     return redirect()->back()->withFlashSuccess(trans('product.alerts.deleted'));
 }