/**
  * Show the form for creating a new resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $survey_list = Survey::paginate(10);
     return view('survey.index', ['survey_list' => $survey_list, 'ser' => 1]);
 }