title($title); $this->content($content); $this->class('card'); $this->id('card-'.Str::random(8)); } /** * @return $this */ public function withHeaderBorder() { $this->divider = true; return $this; } /** * 设置卡片间距. * * @param string $padding */ public function padding(string $padding) { $this->padding = 'padding:'.$padding; return $this; } public function noPadding() { return $this->padding('0'); } /** * @param string|\Closure|Renderable|LazyWidget $content * * @return $this */ public function content($content) { if ($content instanceof LazyGrid) { $content->simple(); } $this->content = $this->formatRenderable($content); return $this; } /** * @param string $content * * @return $this */ public function footer($content) { $this->footer = $content; return $this; } /** * @param string $title * * @return $this */ public function title($title) { $this->title = $title; return $this; } /** * @param string|Renderable|\Closure $content * * @return $this */ public function tool($content) { $this->tools[] = $this->toString($content); return $this; } /** * {@inheritdoc} */ public function defaultVariables() { return [ 'title' => $this->title, 'content' => $this->toString($this->content), 'footer' => $this->toString($this->footer), 'tools' => $this->tools, 'attributes' => $this->formatHtmlAttributes(), 'padding' => $this->padding, 'divider' => $this->divider, ]; } }