message = value($message); $this->style = $style; $this->placement = $placement; } /** * Render help header. * * @return string */ public function render() { $class = 'grid-column-help-'.Str::random(8); $tooltip = Tooltip::make('.'.$class); if (in_array($this->style, ['green', 'blue', 'red', 'purple'])) { $tooltip->{$this->style}(); } if (in_array($this->placement, ['bottom', 'left', 'right', 'top'])) { $tooltip->{$this->placement}(); } $tooltip->title($this->message); return << HELP; } }