Using meilisearch scout, and want to get specific columns only on response. (To descrease the result size)
$products = Product::search('blabla')
->select('title', 'id')
->paginate($paginate)
->load(['cover']);
But it returns error like that
Method Laravel\Scout\Builder::select does not exist
How can I pick specific columns?