fix filter

This commit is contained in:
2024-08-28 15:39:35 +03:00
parent f20f408f12
commit 0960a7b1fd
5 changed files with 52 additions and 22 deletions

View File

@ -0,0 +1,12 @@
<?php
namespace Itguild\Tables\Filter;
class InputDateFilter extends Filter
{
public function fetch()
{
return "<td><input type='date' name='$this->name' value ='$this->value'></td>";
}
}