public function getDesactive($estado_id)
 {
     $estado = Estado::find($estado_id);
     $estado->status = 'Inactivo';
     $estado->save();
     return self::getindex();
 }
 public function getEdit($factura_compra_id)
 {
     $factura_compra = FacturaCompra::find($factura_compra_id);
     $estados = Estado::whereStatus('Activo')->orderBy('id', 'DESC')->lists('nombre', 'id');
     $vendedores = Vendedor::whereStatus('Activo')->orderBy('rut')->lists('rut', 'id');
     $proveedores = Cliente::whereStatus('Activo')->orderBy('rut')->lists('rut', 'id');
     return View::make('sgrm.facturas_compra.edit')->with('estados', $estados)->with('vendedores', $vendedores)->with('proveedores', $proveedores)->with('factura_compra', $factura_compra);
 }