I want to use Eloquent\'s active record building to build a search query, but it is going to be a LIKE search. I have found the User::find($term) or User:
User::find($term)
User:
You're able to do database finds using LIKE with this syntax:
Model::where('column', 'LIKE', '%value%')->get();