Awesome
Blade Feather Icons
<a href="https://packagist.org/packages/brunocfalcao/blade-feather-icons"> <img src="https://poser.pugx.org/brunocfalcao/blade-feather-icons/v/stable.svg" alt="Latest Stable Version"> </a> <a href="https://packagist.org/packages/brunocfalcao/blade-feather-icons"> <img src="https://poser.pugx.org/brunocfalcao/blade-feather-icons/d/total.svg" alt="Total Downloads"> </a>A package to easily make use of Feather Icons in your Laravel Blade views.
For a full list of available icons see the SVG directory or preview them at feathericons.com.
Requirements
- PHP 8.0 or higher (versions > Laravel 9.0)
- PHP 7.2 or higher (versions < Laravel 8.0)
- Laravel 7.14 or higher
Installation
composer require brunocfalcao/blade-feather-icons
Usage
Icons can be used a self-closing Blade components which will be compiled to SVG icons:
<x-feathericon-alert-triangle/>
You can also pass classes to your icon components:
<x-feathericon-alert-triangle class="text-primary"/>
And even use inline styles:
<x-feathericon-alert-triangle style="color: #555"/>
Raw SVG Icons
If you want to use the raw SVG icons as assets, you can publish them using:
php artisan vendor:publish --tag=blade-feather-icons --force
Then use them in your views like:
<img src="{{ asset('vendor/blade-feather-icons/alert-triangle.svg') }}" width="25" height="25"/>
Update your Feather icons to the latest version
Install the feather icons npm library
npm install feather-icons --save
Then copy this line to your webpack.mix file
mix.copy('node_modules/feather-icons/dist/icons', 'public/vendor/feather-icons');
Blade Icons
Blade Feather Icons uses Blade Icons under the hood. Please refer to the Blade Icons readme for additional functionality.
Changelog
Check out the CHANGELOG in this repository for all the recent changes.
Maintainers
Blade Feather Icons is developed and maintained by Bruno Falcao. You can follow me on Twitter.
Blade Icons is developed and maintained by Dries Vints.
License
Blade Feather Icons is open-sourced software licensed under the MIT license.