/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     VisitorType::destroy($id);
     return Response::json(array('success' => 'Visitor type has been deleted!'));
 }