Is this the proper way to have an "Include records" filter from a table with a modified query?
I have a filter like below and it's off by default so only active records are showing. Is this how I should be including inactive as well with a filter?
Solution:Jump to solution
Never mind, I ended up going with a ternary instead.
```php
TernaryFilter::make('inactive_flag')
->label('Status')...
1 Reply
Solution
Never mind, I ended up going with a ternary instead.