Tuesday, March 21, 2017

How to perform in laravel multiple where with or query

Product::where('name', 'like', 'something%')->orWhere('category', 'like', 'something%')->orWhere('price', 'like', 'something%')->orWhere('qty', 'like', 'something%')...

Can I do it in more elegant and compact way?



via Batmannn

Advertisement