menu brand links test ready

This commit is contained in:
merdan 2022-09-23 17:04:13 +05:00
parent 16d2011359
commit 2f9aee82fb
1 changed files with 1 additions and 1 deletions

View File

@ -70,12 +70,12 @@ class SearchController extends V1Controller
$locale = core()->getRequestedLocaleCode();
$products = $this->productFlatRepository->getModel()::search(implode(' OR ', $key))
->where('status', 1)
->where('visible_individually', 1)
->where('channel', $channel)
->where('locale', $locale)
->take(10)
->query(fn ($query) => $query->select('id','name','product_id','description')
->where('status', 1)
// ->addSelect(DB::raw("\'product\' as type" ))
->orderBy('name'))
->get();