Skip to content

"A package to easily make use of Iconify in your Laravel Blade views.

License

Notifications You must be signed in to change notification settings

ShakilAhmmed/blade-file-iconify

Repository files navigation

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.

About

"A package to easily make use of Iconify in your Laravel Blade views.

Resources

License

Stars

Watchers

Forks

Packages

No packages published