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