Okipa / laravel-table

Generate tables from Eloquent models.
MIT License
532 stars 64 forks source link

Search column without displaying it #42

Closed cawecoy closed 4 years ago

cawecoy commented 4 years ago

Can I search column without displaying it?

Like:

$table->column('email')->hide()->searchable();

?

Okipa commented 4 years ago

Hi @cawecoy

Currently we can't, if I encountered this case, I suppose I would manage to handle this extra search into the ->query() closure.

I am currently building the v2 of this package so I will try to keep this in mind to see if something would be possible about that.