Pages::selectMin($select)

Version 2024.2

Select min value of given field

Return value

Float | String

Arguments

$select
Field name

Full documentation

Get min total_amount of new projects:

$totalAmount = $this->get('pages','project')
    ->addWhere('status','New')
    ->selectMin('total_amount');