codeat3/blade-solar-icons

A package to easily make use of "Solar Icons" in your Laravel Blade views.
78,816 6
Install
composer require codeat3/blade-solar-icons
Latest Version:1.4.1
PHP:^7.4|^8.0
License:MIT
Last Updated:May 24, 2026
Links: GitHub  ·  Packagist
Maintainer: swapnilsarwe

Blade Solar Icons

A package to easily make use of Solar Icons in your Laravel Blade views.

For a full list of available icons see the SVG directory or check the figma file figma.com.

Requirements

  • PHP 7.4 or higher
  • Laravel 8.0 or higher

Installation

composer require codeat3/blade-solar-icons

Updating

Please refer to the upgrade guide when updating the library.

Blade Icons

Blade Solar Icons uses Blade Icons under the hood. Please refer to the Blade Icons readme for additional functionality. We also recommend to enable icon caching with this library.

Caching Icons

It's a good idea to add the icons:cache command as part of your deployment pipeline and always cache icons in production. This will significantly improve performance of the application. Refer Caching section for details.

Configuration

Blade Solar Icons also offers the ability to use features from Blade Icons like default classes, default attributes, etc. If you'd like to configure these, publish the blade-solar-icons.php config file:

php artisan vendor:publish --tag=blade-solar-icons-config

Usage

Icons can be used as self-closing Blade components which will be compiled to SVG icons:

<x-solar-4k-bold/>

You can also pass classes to your icon components:

<x-solar-4k-bold class="w-6 h-6 text-gray-500"/>

And even use inline styles:

<x-solar-4k-bold 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-solar-icons --force

Then use them in your views like:

<img src="https://raw.githubusercontent.com/codeat3/blade-solar-icons/HEAD/{{ asset('vendor/blade-solar-icons/aid.svg') }}" width="10" height="10"/>

Changelog

Check out the CHANGELOG in this repository for all the recent changes.

Maintainers

Blade Solar Icons is developed and maintained by Swapnil Sarwe.

License

Blade Solar Icons is open-sourced software licensed under the MIT license.

Related Packages

philo/laravel-blade

Use the simple and yet powerful Laravel Blade templating engine as a standalone...

684,122 355
fitztrev/laravel-html-minify

Minifies the HTML output of Laravel 4 applications

215,237 414
igaster/laravel-theme

Laravel Themes: Asset & Views folder per theme. Theme inheritance. Blade integra...

1,263,205 515
spatie/laravel-blade-javascript

A Blade directive to export variables to JavaScript

937,970 620
riverskies/laravel-mobile-detect

Instant mobile detection access directly from within Blade templates.

1,546,972 231