'date is after', 'name' => $this::GREATER, 'fieldType' => 'datetime', 'value_transform' => function ($val) { return strtotime($val . ' + 1 day'); }, ], [ 'label' => 'date is before', 'name' => $this::SMALLER, 'fieldType' => 'datetime', 'value_transform' => function ($val) { return strtotime($val); }, ], [ 'label' => 'Date between', 'name' => $this::INTERVAL, 'fieldType' => 'datetime_interval', 'value_transform' => function ($val) { return isset($val['from']) && isset($val['to']) ? ['from' => strtotime($val['from']), 'to' => strtotime($val['to'] . ' 23:59:59')] : null; }, ], ]; } }