/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $studies = Study::find($id);
     $studies->delete();
     Session::flash('message', 'You have successfully deleted study');
     return Redirect::to('dashboard/admin/studies');
 }