Id Name Birthday Age
1 Klikam na asd 23. 2. 1982 42
2 aaaa 2. 1. 1997 27
3 aaa 21. 5. 1955 69
4 Difficult Deer 23. 5. 1964 60
5 Underground Harpoon Gladiator 23. 8. 1939 85
6 Anxious Alpacaaaa a aa 25. 9. 1985 39
7 Misty Meerkat 11. 3. 1974 50
8 Funky Chainsaw of Mysteryasd as da 23. 5. 1946 78
9 Sid Meier Deer Hunter Hoedown 20. 4. 1944 80
10 Terrible Karaoke of Mystery 10. 4. 1981 43
11 Joyous Jaguara sda sd 19. 9. 1994 30
12 Silly Sheepasdasd 19. 1. 1936 88
13 Grumpy Gerenuk 27. 9. 1978 46
14 Glorious Gaur 15. 12. 1977 46
15 Xenophobic Xenomorph 3. 3. 1987 37
16 Relieved Rhinoceros 11. 2. 1945 79
17 Bad Buzzard 8. 3. 1983 41
18 Dangerous Dolphin 28. 4. 1931 93
19 Quaint Quoll 27. 10. 1949 75
20 Thoughtless Turkey 14. 8. 1941 83
( Items: 1 - 20 from 1020 )
  See the code below 👇 or see GitHub
public function createComponentGrid(): DataGrid
{
	$grid = new DataGrid();

	$grid->setDataSource($this->dibiConnection->select('*')->from('users'));

	$grid->setItemsPerPageList([20, 50, 100], true);

	$grid->addColumnText('id', 'Id')
		->setSortable();

	$grid->addColumnText('email', 'E-mail')
		->setSortable()
		->setFilterText();

	$grid->addColumnText('name', 'Name')
		->setFilterText();

	$grid->addColumnDateTime('birth_date', 'Birthday')
		->setFormat('j. n. Y');

	$grid->addColumnNumber('age', 'Age')
		->setRenderer(fn (Row $row): ?int => DateTime::fromSafe($row->asDateTime('birth_date'))?->diff(new DateTime())->y);

	return $grid;
}