Proengsoft\JsValidation\Javascript\JavascriptValidator::render PHP Метод

render() публичный Метод

Render the specified view with validator data.
public render ( Illuminate\Contracts\View\View | string | null $view = null, string | null $selector = null ) : string
$view Illuminate\Contracts\View\View | string | null
$selector string | null
Результат string
    public function render($view = null, $selector = null)
    {
        $this->view($view);
        $this->selector($selector);
        return View::make($this->view, ['validator' => $this->getViewData()])->render();
    }