nalingia / nova-simple-toolbar-link
A Laravel Nova tool.
Installs: 5 954
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2024-11-07 17:17:24 UTC
README
This package provides a custom toolbar link. Just it: a simple anchor with a name, an href, a target and a icon.
Installation
composer require nalingia/nova-simple-toolbar-link
Usage
use Nalingia\SimpleToolbarLink\SimpleToolbarLink; //... public function tools() { return [ (new SimpleToolbarLink()) ->name(__('Packagist')) ->to('https://packagist.org/') ->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>'); ]; }