Exemplo n.º 1
0
 /**
  * Show the form for editing the specified destino.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $destino = Destino::find($id);
     return View::make('destinos.edit', compact('destino'));
 }
Exemplo n.º 2
0
 public function edit($id)
 {
     $this->data['destinos'] = Destino::find($id);
     return View::make('admin.destinos.edit', $this->data);
 }