bugo / moonshine-fontawesome-field
Font Awesome icons selection field for MoonShine
1.2
2025-03-13 14:18 UTC
Requires
- php: ^8.2
- owenvoke/blade-fontawesome: ^2.7
Requires (Dev)
- moonshine/moonshine: ^3.0
- orchestra/testbench: ^9.0
- pestphp/pest: ^3.5
- pestphp/pest-plugin-laravel: ^3.0
- rector/rector: ^2.0
Conflicts
- moonshine/moonshine: <3.0
README
Convenient Font Awesome icons selection field for MoonShine
Support MoonShine versions
MoonShine | This package |
---|---|
2.0+ | 0.x |
3.0+ | 1.x |
Installation
composer require bugo/moonshine-fontawesome-field
Usage
You can use IconSelect
field in your resources:
<?php declare(strict_types=1); namespace App\MoonShine\Resources; use Bugo\MoonShine\FontAwesome\Fields\IconSelect; use MoonShine\Laravel\Resources\ModelResource; use MoonShine\Contracts\UI\FieldContract; use MoonShine\Contracts\UI\ComponentContract; /** * @extends ModelResource<Custom> */ class CustomResource extends ModelResource { /** * @return list<ComponentContract|FieldContract> */ protected function formFields(): iterable { return [ IconSelect::make('Icon') ->searchable(), ]; } }
All use cases of Blade Font Awesome are also available for you.
Caching
When using icons in Blade templates, be sure to enable Caching.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.