我目前正在使用搜索引擎,但是遇到问题
company_name
列中的确切索引(options
)
{
"message_notification":true,
"security_notification":true,
"subscription_notification":true,
"notification_email_address":"adasd@dfasdfasd.com",
"company_name":"testcompanyasdasd",
"about":null,
"date_of_inc":null,
"video_link":null
}
我使用此查询来获取它,但我想从上面的列表中获取索引company_name
$query->where(function($query) use ($service_name) {
$query->where('users.options', 'LIKE', '%' . $service_name . '%')
->orWhere('users.name', 'LIKE', '%' . $service_name . '%');
});