/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $reserva = Reserva::find($id);
     return view('agenda.edit', ['reserva' => $reserva]);
 }