提示窗
<h1>提示窗</h1>
<p>基本用法</p>
<pre><code class="language-php">&lt;?php
use Dcat\Admin\Widgets\Tooltip;
use Dcat\Admin\Widgets\Card;
use Dcat\Admin\Layout\Content;
class MyController
{
public function index(Content $content)
{
Tooltip::make('.icon-help-circle')-&gt;title('我是提示信息');
return $content-&gt;body(new Card(
&lt;&lt;&lt;HTML
&lt;div class=&quot;p4&quot;&gt;
&lt;i class=&quot;feather icon-help-circle&quot;&gt;&lt;/i&gt;
&lt;/div&gt;
HTML
));
}
}</code></pre>
<p>效果
<a href="{{public}}/assets/img/screenshots/tooltip.png" target="_blank">
<img src="{{public}}/assets/img/screenshots/tooltip.png" width="70%" style="box-shadow:0 1px 6px 1px rgba(0, 0, 0, 0.12)" >
</a></p>