What query to select from date now and see between 2 column
What query to select from date now and see between 2 column, like i want to check is today still more than startDate and less than dueDate, if still in that period of time, get the data of it and add it to select option
Solution:Jump to solution
you want to get options for a select input, based on a query?
If yes you can use the ->->options like that:
```
use Filament\Forms\Components\Select;...
2 Replies
Solution
you want to get options for a select input, based on a query?
If yes you can use the ->->options like that:
Thank you so much for helping! You're so awesome!