Laraveldaily\Quickadmin\Builders\ViewsBuilder::helper PHP Метод

helper() приватный Метод

Create helper blocks for form fields
private helper ( $value ) : string
$value
Результат string
    private function helper($value)
    {
        if ($value != '') {
            return '<p class="help-block">' . $value . '</p>';
        } else {
            return '';
        }
    }