afink / blade-tablericons
A package to easily make use of tabler-icons in your Laravel Blade views.
Requires
- php: ^7.2|^8.0
- blade-ui-kit/blade-icons: ^0.4|^0.5|^1.4
- illuminate/support: ^7.0|^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2025-03-08 20:31:14 UTC
README
A package to easily make use of Tablericons GitHub in your Laravel Blade views.
For a full list of available icons see the SVG directory. Tablericons are originally developed by Paweł Kuna.
Requirements
- PHP 7.2 or higher
- Laravel 7.14 or higher
Installation
You can install the package via composer:
composer require afink/blade-tablericons
Usage
Icons can be used a self-closing Blade components which will be compiled to SVG icons:
<x-tablericon-brand-github/>
You can also pass classes to your icon components:
<x-tablericon-brand-github class="w-6 h-6 text-gray-500"/>
And even use inline styles:
<x-tablericon-brand-github 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-tablericons --force
Then use them in your views like:
<img src="{{ asset('vendor/blade-tablericons/brand-github.svg') }}" width="10" height="10"/>
Tablericons
Blade tablericons uses Blade Icons under the hood. Please refer to the Tablericons readme for additional functionality.
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email andreas@andreasfink.xyz instead of using the issue tracker.
Credits
- Andreas Fink
- Faisal50x This package was inspired from him.
- blade-icons
License
The MIT License (MIT). Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.