Encore\Admin\Grid\Filter\AbstractFilter::formatLabel PHP 메소드

formatLabel() 보호된 메소드

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