This repository was archived by the owner on Jun 27, 2024. It is now read-only.
This repository was archived by the owner on Jun 27, 2024. It is now read-only.
QueryBuilder error on search #24
Closed
Description
Hey there,
Users are displayed properly in the table, but I'm getting the following error when I type something in the search field:
Argument 1 passed to Spatie\QueryBuilder\QueryBuilder::Spatie\QueryBuilder\Concerns\{closure}() must be of the type string, array given
Using the example controller:
->defaultSort('name')
->allowedSorts(['name', 'email'])
->allowedFilters(['name', 'email', $globalSearch])
->paginate()
->withQueryString();
as well as the example page component with the table from the README.
Vue 3, Laravel Jetstream(Inertia).