Min - maximiliamus/weby-sloth GitHub Wiki
Finds the smallest value of a column.
$sloth = Sloth::from($data)
->group('foo', 'baz')
->min();$sloth->print();
foo baz one 1 two 4
print_r($sloth->fetch());
Array
(
[0] => Array
(
[foo] => one
[baz] => 1
)
[1] => Array
(
[foo] => two
[baz] => 4
)
)