/** * Show the form for editing the specified anuncio. * * @param int $id * @return Response */ public function edit($id) { $paises = Pais::lists('nombre', 'id'); $departamentos = Departamento::lists('nombre', 'id'); $municipios = Municipio::lists('nombre', 'id'); $categoria = Categoria::lists('nombre', 'id'); $mapas = Mapaslugares::lists('nombre', 'id'); $anuncio = $this->anuncioRepository->findanuncioById($id); if (empty($anuncio)) { Flash::error('anuncio not found'); return redirect(route('anuncios.index')); } return view('anuncios.edit')->with('anuncio', $anuncio, 'paises', 'departamentos', 'municipios', 'categoria', 'mapas'); }