public function getDesactive($factura_venta_id) { $country = FacturaVenta::find($factura_venta_id); $country->status = 'Inactivo'; $country->save(); return Redirect::back(); }
public function getIndex() { $bills = FacturaVenta::whereStatus('En Espera')->get(); $cotizaciones = RankingCliente::orderBy('valoracion', 'Desc')->get(); return View::make('home_admin')->with('bills', $bills)->with('cotizaciones', $cotizaciones); }