| 1234567891011121314151617181920212223242526 |
- <?php
- namespace Dcat\Admin\Grid\Filter;
- class Date extends AbstractFilter
- {
- /**
- * {@inheritdoc}
- */
- protected $query = 'whereDate';
- /**
- * @var string
- */
- protected $fieldName = 'date';
- /**
- * {@inheritdoc}
- */
- public function __construct($column, $label = '')
- {
- parent::__construct($column, $label);
- $this->{$this->fieldName}();
- }
- }
|