Encore\Admin\Grid\Filter\AbstractFilter::formatLabel PHP Method

formatLabel() protected method

Format label.
protected formatLabel ( string $label ) : string
$label string
return string
    protected function formatLabel($label)
    {
        $label = $label ?: ucfirst($this->column);
        return str_replace(['.', '_'], ' ', $label);
    }