[ 'title' => 'backend::lang.dashboard.widget_title_label', 'default' => '{{title_name}} Report Widget', 'type' => 'string', 'validationPattern' => '^.+$', 'validationMessage' => 'backend::lang.dashboard.widget_title_error', ], ]; } /** * Adds widget specific asset files. Use $this->addJs() and $this->addCss() * to register new assets to include on the page. * @return void */ protected function loadAssets() { } /** * Renders the widget's primary contents. * @return string HTML markup supplied by this widget. */ public function render() { try { $this->prepareVars(); } catch (Exception $ex) { $this->vars['error'] = $ex->getMessage(); } return $this->makePartial('{{lower_name}}'); } /** * Prepares the report widget view data */ public function prepareVars() { } }