/**
  * Show the form for editing the specified savingposting.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $savingposting = Savingposting::find($id);
     return View::make('savingpostings.edit', compact('savingposting'));
 }