datlechin / blade-lineicons
A package to easily make use of Lineicons in your Laravel Blade views.
Requires
- php: ~8.1.0|~8.2.0
- blade-ui-kit/blade-icons: ^1.4
- illuminate/support: ^9.0|^10.0
Requires (Dev)
- orchestra/testbench: ^7.0|^8.0
- phpunit/phpunit: ^9.0
- dev-main
- 0.1.0
- dev-depfu/update/composer/blade-ui-kit/blade-icons-1.7.2
- dev-depfu/update/composer/illuminate/support-11.28.1
- dev-depfu/update/composer/illuminate/support-11.21.0
- dev-depfu/update/composer/blade-ui-kit/blade-icons-1.7.1
- dev-depfu/update/composer/orchestra/testbench-9.0.4
- dev-depfu/update/composer/orchestra/testbench-9.0.3
- dev-depfu/update/composer/phpunit/phpunit-11.0.4
This package is auto-updated.
Last update: 2024-10-31 00:23:43 UTC
README
A package to easily make use of Lineicons in your Laravel Blade views.
For a full list of available icons see the SVG directory or preview them at heroicons.com.
Requirements
- PHP 8.1 or higher
- Laravel 9.0 or higher
Installation
composer require datlechin/blade-lineicons
Updating
Please refer to the upgrade guide
when updating the library.
Blade Icons
Blade Lineicons 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 Lineicons 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-lineicons.php
config file:
php artisan vendor:publish --tag=blade-lineicons-config
Usage
Icons can be used as self-closing Blade components which will be compiled to SVG icons:
<x-lineicons-capsule />
You can also pass classes to your icon components:
<x-lineicons-capsule class="w-6 h-6 text-gray-500" />
And even use inline styles:
<x-lineicons-capsule style="color: #555" />
The solid icons can be referenced like this:
<x-lineicons-capsule />
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-lineicons --force
Then use them in your views like:
<img src="{{ asset('vendor/blade-lineicons/capsule.svg') }}" width="10" height="10"/>
Changelog
Check out the CHANGELOG in this repository for all the recent changes.
Maintainers
Blade Lineicons is developed and maintained by Ngo Quoc Dat.
License
Blade Lineicons is open-sourced software licensed under the MIT license.