/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $sessionSet = SessionSet::findOrFail($id);
     $sessionSet->delete();
     return back();
 }