Encore\Admin\Form\Field\Currency::render PHP 메소드

render() 공개 메소드

public render ( )
    public function render()
    {
        $this->script = <<<EOT

\$('#{$this->id}').inputmask("currency", {radixPoint: '.', prefix:''})

EOT;
        return parent::render()->with(['symbol' => $this->symbol]);
    }