Skip to content

Instantly share code, notes, and snippets.

@soyHouston256
Last active September 13, 2019 17:13
Show Gist options
  • Save soyHouston256/e589bc748f91ddaf3ee92b0f007c0df2 to your computer and use it in GitHub Desktop.
Save soyHouston256/e589bc748f91ddaf3ee92b0f007c0df2 to your computer and use it in GitHub Desktop.
Ignorar Mayúsculas o minúsculas al consultar un modelo de laravel
$name = $args["name"];
User::whereRaw('LOWER(name) LIKE (?) ',["%{$name}%"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment