/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $studies = Study::all();
     return view('dashboard.admin.study.index', ['study' => $studies]);
 }