使用laravel获取列内对象的索引

时间:2019-04-11 03:23:11

标签: php laravel

我目前正在使用搜索引擎,但是遇到问题 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 . '%');
});

0 个答案:

没有答案