Laravel Scout: Is there a way that I search in only a specific field?
At the moment this line is working fine:
$es = Element::search($q)->get();
But it searches title, shortdescription and description fields. I need it to only search in title field.
If you want standard query result, but search only in a specific column (field), you can try this solution:
Tested on Laravel 6, but I think it will work on later versions to...