nalingia / nova-simple-toolbar-link
一个Laravel Nova工具。
1.0.2
2020-05-07 07:13 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2024-09-07 16:53:26 UTC
README
此包提供了一个自定义工具栏链接。只是这样:一个简单的锚点,包含名称、href、目标和图标。
安装
composer require nalingia/nova-simple-toolbar-link
使用
use Nalingia\SimpleToolbarLink\SimpleToolbarLink; //... public function tools() { return [ (new SimpleToolbarLink()) ->name(__('Packagist')) ->to('https://packagist.org.cn/') ->target('_blank') ->icon('<svg class="sidebar-icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="var(--sidebar-icon)" d="M8 4c0-1.1.9-2 2-2h4a2 2 0 0 1 2 2h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h2zm0 2H6v14h12V6h-2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2zm2-2v2h4V4h-4z"/></svg>'); ]; }