/**
  * Remove the specified product from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     CustomerType::destroy($id);
     return Response::json(array('success' => true, 'message' => array('type' => 'success', 'msg' => 'Xóa loại khách hàng thành công!')));
 }