Skip to content

Repository files navigation

Heroicon Nova Field

A Laravel Nova Field for managing icons. Heroicons and free Font Awesome supported out of the box, pro version of Font Awesome can be registered as custom set of icons.

Custom sets of icons can be registered globally for each field or locally for concrete field instanse and used with or instead default sets.

Each icon can be changed via editor.

Icon saved as svg html tag into db.

Installation:

Use composer for installation. Laravel with nova required.

composer require alexazartsev/heroicon

Usage:

Use it as regular nova field:

useAlexAzartsev\Heroicon\Heroicon;
Heroicon::make('Icon');

Default icon sets available:

NameLabelIcons
solidHeroicons solidHeroicons solid
outlineHeroicons outlineHeroicons outline
fa-brandsFont Awesome brandsFont Awesome brands
fa-solidFont Awesome solidFont Awesome solid
fa-regularFont Awesome regularFont Awesome regular

To use custom or customize existing icon click on Edit button and just edit svg code of selected icon:

To register custom set of icons use global or local configuration discribed below:

Configuration:

Global configuration:

Field can be configured globally in NovaServiceProvider:

namespaceApp\Providers;
useAlexAzartsev\Heroicon\Heroicon;
class NovaServiceProvider extends NovaApplicationServiceProvider
{
...
publicfunctionboot()
{
parent::boot();
// to register set of icons globally, just specify folder with svg icons like this:// (icons should be located directly in specified folder in .svg format)// 'custom' icon set will be available for every Heroicon in your app
Heroicon::registerGlobalIconSet('custom', 'Custom Icons', resource_path('img/icons'));
// to pick default icon sets that will be available on field all over app use this:// default sets available: 'solid', 'outline', 'fa-brands', 'fa-regular', 'fa-solid'
Heroicon::defaultIconSets(['solid', 'fa-brands', 'custom']);
// to make svg editor disabled by default for every field use this:
Heroicon::defaultEditorEnable(false);
}

Local configuration:

To disable or enable svg editor of the icon:

useAlexAzartsev\Heroicon\Heroicon;
Heroicon::make('Icon')->disableEditor();
Heroicon::make('Icon')->enableEditor();

To register custom set of icons (icons should be located directly in specified folder in .svg format):

useAlexAzartsev\Heroicon\Heroicon;
Heroicon::make('Icon')->registerIconSet('custom', 'Custom', resource_path('img/icons'));

To allow certain sets of icons:

useAlexAzartsev\Heroicon\Heroicon;
Heroicon::make('Icon')->only(['custom', 'solid']);
//for default sets you can use these methods:
Heroicon::make('Icon')->onlySolid();
Heroicon::make('Icon')->onlyOutline();
Heroicon::make('Icon')->onlyFaBrands();
Heroicon::make('Icon')->onlyFaSolid();
Heroicon::make('Icon')->onlyFaRegular();

Support:

alex.azarsecond@gmail.com

License:

The MIT License (MIT). Please see License File for more information.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages