laravel-admin
laravel-admin copied to clipboard
Filter/Gt.php works as 'grater than equal' should be 'grater than'
Hi,
I just realized thata gt funciont works as gte.
https://github.com/z-song/laravel-admin/blob/v1.8.19/src/Grid/Filter/Gt.php#L31
this line should be
return $this->buildCondition($this->column, '>', $this->value);
why is this line '>=' ? Is this an intended behavior?
Thanks