/**
  * Display the specified product.
  *
  * @param  int  $id
  * @return Response
  */
 public function show($id)
 {
     $customerType = CustomerType::find($id);
     return Response::json($customerType);
 }