/**
  * Remove the specified resource from storage.
  *
  * @param Timeslot $timeslot
  * @return \Illuminate\Http\Response
  * @throws \Exception
  */
 public function destroy(Timeslot $timeslot)
 {
     $timeslot->delete();
     return redirect('/week');
 }