Created
October 28, 2018 23:22
-
-
Save adamcrampton/9198dfdc419996b7b398f07c76bb6d8a to your computer and use it in GitHub Desktop.
Simple Eloquent search snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User::query() | |
->where('name', 'LIKE', "%{$searchTerm}%") | |
->orWhere('email', 'LIKE', "%{$searchTerm}%") | |
->get(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment