itsmalikjones/blade-iconic

A package to easily make use of Iconic icons in your Laravel Blade views
44,499 18
Install
composer require itsmalikjones/blade-iconic
Latest Version:1.3.0
PHP:^7.4|^8.0|^8.1
License:MIT
Last Updated:Feb 21, 2023
Links: GitHub  ·  Packagist
Maintainer: ItsMalikJones

Blade Iconic

run-tests

A package to easily make use of Iconic icons in your Laravel Blade views.

For a full list of available icons see the SVG directory. Iconic icons are originally developed by Make Lemonade.

Requirements

  • PHP 7.4 or higher
  • Laravel 8.0 or higher

Installation

composer require itsmalikjones/blade-iconic

Blade Icons

Blade Iconic 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.

Configuration

Blade Iconic 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-iconic.php config file:

php artisan vendor:publish --tag=blade-iconic-config

Usage

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

<x-iconic-star/>

You can also pass classes to your icon components:

<x-iconic-star class="w-6 h-6 text-gray-500"/>

And even use inline styles:

<x-iconic-star 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-iconic --force

Then use them in your views like:

<img src="https://raw.githubusercontent.com/ItsMalikJones/blade-iconic/HEAD/{{ asset('vendor/blade-iconic/star.svg') }}" width="10" height="10"/>

Changelog

Please see CHANGELOG for more information on what has changed recently.

Maintainers

Blade Iconic is developed and maintained by Malik Alleyne-Jones.

License

Blade Iconic 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

214,922 415
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