/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy()
 {
     $rant_id = Input::get('rant_id');
     $rantevou = Rantevou::find($rant_id);
     $rantevou->delete();
     return Redirect::to('/rantevou');
 }