Laravel package to search through multiple Eloquent models. Supports sorting, pagination, scoped queries, eager load relationships and searching through single or multiple columns.
While on my research about how to implement this package for SQLite3 I discovered that it has a fallback on to the updated_at column for ordering if no column was specified. I think we should check if ->timestamps is true and otherwise maybe fallback to the primary column? Or maybe any other column that is definitely defined
While on my research about how to implement this package for SQLite3 I discovered that it has a fallback on to the
updated_at
column for ordering if no column was specified. I think we should check if->timestamps
istrue
and otherwise maybe fallback to the primary column? Or maybe any other column that is definitely defined