A package to easily make use of CoreUI Icons in your Laravel Blade views.
ublabs/blade-coreui-icons is a Laravel package for a package to easily make use of coreui icons in your laravel blade views..
It currently has 5 GitHub stars and 5.886 downloads on Packagist (latest version 0.5.0).
Install it with composer require ublabs/blade-coreui-icons.
Discover more Laravel packages by ublabs
or browse all Laravel packages to compare alternatives.
Last updated
A package to easily make use of CoreUI Icons in your Laravel Blade views.
For a full list of available icons see the SVG directory.
You can install the package via composer:
composer require ublabs/blade-coreui-icons
Icons can be used as self-closing Blade components which will be compiled to SVG icons:
<x-cui-cib-500px-5 />
You can also pass classes to your icon components:
<x-cui-cib-500px-5 class="w-6 h-6 text-red-500"/>
And even use inline styles:
<x-cui-cib-500px-5 style="color: #FF2D20"/>
If you want to use the raw SVG icons as assets, you can publish them using:
php artisan vendor:publish --tag=blade-coreui-icons --force
Then use them in your views like:
<img src="{{ asset('vendor/blade-coreui-icons/cib-500px-5.svg') }}" width="10" height="10"/>
Blade CoreUI Icons uses Blade Icons under the hood. Please refer to the Blade Icons readme for additional functionality.
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.