Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created May 10, 2020 16:17
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/a1d410345a070b14b44c8961b9c8bece to your computer and use it in GitHub Desktop.
Save parzibyte/a1d410345a070b14b44c8961b9c8bece to your computer and use it in GitHub Desktop.
<?php
public function buscar(Request $peticion)
{
$busqueda = urldecode($peticion->busqueda);
return Area::where("nombre", "like", "%$busqueda%")
->paginate(Config::get("constantes.paginas_en_paginacion"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment