JBZoo\Utils\Filter::low PHP Method

low() public static method

String to lower and trim
public static low ( $string ) : string
$string
return string
    public static function low($string)
    {
        $cleaned = Str::low($string);
        $cleaned = Str::trim($cleaned);
        return $cleaned;
    }