shakilahmmed / blade-file-iconify
A package to easily make use of Iconify in your Laravel Blade views.
Fund package maintenance!
ShakilAhmmed
Requires
- php: ^7.4|^8.0
- brick/varexporter: ^0.1.2
- illuminate/contracts: ^8.0|^9.0|^10.0|^11.0
- illuminate/filesystem: ^8.0|^9.0|^10.0|^11.0
- illuminate/support: ^8.0|^9.0|^10.0|^11.0
- illuminate/view: ^8.0|^9.0|^10.0|^11.0
- symfony/console: ^5.3|^6.0|^7.0
- symfony/finder: ^5.3|^6.0|^7.0
Requires (Dev)
- mockery/mockery: ^1.5.1
- orchestra/testbench: ^6.0|^7.0|^8.0|^9.0
- phpunit/phpunit: ^9.0|^10.5|^11.0
README
Blade File Icons
A package to easily make use of Iconify in your Laravel Blade views.
For a full list of available icons see the SVG directory.
Requirements
- PHP 7.4 or higher
- Laravel 8.0 or higher
Installation
composer require shakilahmmed/blade-file-iconify
Updating
Please refer to the upgrade guide
when updating the library.
Configuration [Must Needed]
php artisan vendor:publish --tag=blade-file-iconify
php artisan icon:cache
Usage
Icons can be used as self-closing Blade components which will be compiled to SVG icons:
<x-fileicon-ada/>
You can also pass classes to your icon components:
<x-fileicon-ada class="w-6 h-6 text-gray-500"/>
And even use inline styles:
<x-fileicon-ada style="color: #555"/>
To Update Icons from Iconify
php artisan app:save-icons
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-file-iconify --force
Then use them in your views like:
<img src="{{ asset('vendor/blade-fileiconify/ada.svg') }}" width="10" height="10"/>
Changelog
Check out the CHANGELOG in this repository for all the recent changes.
Maintainers
Blade File Iconify is developed and maintained by Shakil Ahmmed.
License
Blade File Icons is open-sourced software licensed under the MIT license.