/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create()
 {
     $result = Feature::orderBy('id', 'ASC');
     $countstr = '功能';
     $count = $result->count();
     return view('Feature.create', compact('countstr', 'count'));
 }