Eloquent::max PHP 메소드

max() 공개 정적인 메소드

Retrieve the maximum value of a given column.
public static max ( string $column ) : float | integer
$column string
리턴 float | integer
        public static function max($column)
        {
            return \Illuminate\Database\Query\Builder::max($column);
        }
Eloquent