Using searchkick gem how would I translate this to the .search way? Or is it not doable?
@projects = Project.joins(:proj_status)
Just wasn't sure how to do joins.
eager loading example from gem reference
Product.search "milk", includes: [:brand, :stores]
for your code above
@projects = Product.search "milk", includes: [:proj_status]