/** * Show the form for editing the specified resource. * GET /tipohabitacion/{id}/edit * * @param int $id * @return Response */ public function postEdit() { $tipogasto = TipodeGasto::find(Input::get('tipogasto_id')); $tipogasto->update(Input::all()); $tipogasto->save(); return Redirect::to("/tiposdegasto"); }
public function getRegistrarGasto() { $tipodegastos = TipodeGasto::lists('nombre', 'id'); return View::make('caja.registrargasto', compact('tipodegastos')); }