/** * 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')); }
public function edit($id) { $this->data['destinos'] = Destino::find($id); return View::make('admin.destinos.edit', $this->data); }