Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 11, 2020 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/f04d27ff531e064c64be0477652acdab to your computer and use it in GitHub Desktop.
Save parzibyte/f04d27ff531e064c64be0477652acdab to your computer and use it in GitHub Desktop.
<?php
public function terminarOCancelarVenta(Request $request)
{
if ($request->input("accion") == "terminar") {
return $this->terminarVenta($request);
} else {
return $this->cancelarVenta();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment