Jeff Prehm

Results 2 comments of Jeff Prehm

@tharropoulos I'm having the same issue, and seeing that highlights arrays are empty. This is because the returned items do not exist in the search results. ```php $items = Event::search($request->string('search'))->get();...

I found this is caused by using `$request->string($search)->raw()` updating to $request->input($search)->raw()` returns the expected results. When using `$request->string($search)` the query is not converted to a string, but is a stringable...