Laravel查询搜索

时间:2019-07-02 09:01:47

标签: laravel laravel-query-builder

我想在Laravel 5.6中使用此代码。我已经在Laravel中将其转换,但是无法正常工作。

useReducer
$location = $filters['location'];
$keywords = $filters['keywords'];
$lst = listing::whereRaw('find_in_set(?,country_id)', [$cid])
    ->where(function ($lst) use ($location) {
        $lst->orWhere('state', '=', $location);
        $lst->orWhere('city', '=', $location);
    })
    ->where(function ($lst) use ($keywords) {
        $lst->where('title', 'LIKE', '%'.$keywords.'%');
        $lst->orWhere('listing_id', 'LIKE', '%'.$keywords.'%');
    })
    ->paginate(20);

我得到的结果是空白,但没有错误消息。

0 个答案:

没有答案