/**
  * Show all the types
  *
  * @Get("user/type")
  * @return \Illuminate\Http\Response
  */
 public function indexType()
 {
     return view('user.indexType', ['types' => Type::all()]);
 }