public function rantevou()
 {
     $rantevou = Rantevou::All();
     $pelates = Pelatis::All();
     return View::make('pages.rantevou')->with('rantevou', $rantevou)->with('pelates', $pelates);
 }
 /**
  * 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');
 }