/**
  * Delete product beyond recovery.
  *
  * @param $id
  *
  * @return mixed
  */
 public function delete($id)
 {
     $this->product->delete($id);
     return redirect()->back()->withFlashSuccess(trans('alerts.users.deleted_permanently'));
 }