
Please let me know how can I remove these default filter which search ID?
@smuzammilali
$grid->filter(function($filter){
$filter->disableIdFilter();
});
Thank you it works also it's possible to remove the labels?

@z-song Any help regarding above issue?
Also can we use just one input field for all filters? which called just Search
@smuzammilali It's unable to remove the label currently.
For the second question:
$filter->where(function ($query) {
$query->where('title', 'like', "%{$this->input}%")
->orWhere('content', 'like', "%{$this->input}%");
}, 'Search');
You can write the search query just use eloquent methods.
Most helpful comment
@smuzammilali