Using Eloquent ORM in Laravel to perform search of database using LIKE January 10, 2023 by Tarik You’re able to do database finds using LIKE with this syntax: Model::where('column', 'LIKE', '%value%')->get();