/** * Display a listing of the resource. * * @return Response */ public function index() { $subTitle = "Choices"; $choices = \App\Choice::all(); return view('choice.index', compact('subTitle', 'choices')); // }