Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 26, 2022 14:51
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/25d0a6b344ed38b6412d3ef216a06320 to your computer and use it in GitHub Desktop.
Save parzibyte/25d0a6b344ed38b6412d3ef216a06320 to your computer and use it in GitHub Desktop.
<?php
$builder = Producto::orderBy("descripcion")->where("id_establecimiento", "=", Auth::user()->establecimiento->id);
if ($busqueda) {
$builder->where("descripcion", "LIKE", "%$busqueda%")->orWhere("codigo_barras", "LIKE", "%$busqueda%");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment