我希望在我的网站上进行自定义搜索。
这是 MySQL 搜索:
我怎样才能在我的 Laravel Controller 中进行搜索?
$users = DB::table('MyTable')->where('firstname', 'MySearch')->get();
My Laravel Controller
提前致谢 !
最佳答案
$users = DB::table('MyTable')
->where('id', 'LIKE', '%MySearch%')
->or_where('firstname', 'LIKE', '%MySearch%')
->or_where('lastname', 'LIKE', '%MySearch%')
->or_where('email', 'LIKE', '%MySearch%')
->or_where('address', 'LIKE', '%MySearch%');
->get();
关于php - laravel 5.2 - 搜索功能,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37313187/