/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     VendorAttributes::destroy($id);
     flash()->success('The Attribute has been deleted successfully');
 }