yabhq / laravel-scout-mysql-driver

Laravel Scout MySQL Driver
MIT License
522 stars 113 forks source link

Callback method for modifying the db query not working #102

Open aravindpanicker opened 4 years ago

aravindpanicker commented 4 years ago

Call back set with the query() has no effect on the results returned from the engine.

Course::search($request->term)->query(function($query) { return $query->select(['id', 'name as text']); })->get()

103 Could Fix this issue