All I've done is make a package from the icon portion of Blade UI Kit website, which incidentally can be used to set up icon relationships in your Eloquent models.
You can install the package via composer:
composer require headerx/buku-iconsYou can publish and run the migrations with:
php artisan vendor:publish --provider="HeaderX\BukuIcons\BukuIconsServiceProvider" --tag="buku-icons-migrations"
php artisan migrateYou can publish the config file with:
php artisan vendor:publish --provider="HeaderX\BukuIcons\BukuIconsServiceProvider" --tag="buku-icons-config"This is the contents of the published config file:
<?php
return [
'route_prefix' => '/blade-icons',
'middleware' => [
'web',
],
'db_connection' => env('DB_CONNECTION', 'mysql'),
];Publish migrate and import in one step
php artisan buku-icons:installOr publish configuration and migrations and migrate manually, then run
php artisan buku-icons:importrun artisan serve then visit http://localhost:8000/blade-icons and see over 50,000 icons searchable with livewire!
See https://github.com/blade-ui-kit/blade-ui-kit.com for more info.
If you like this package and want to make a donation, please visit https://github.com/sponsors/driesvints.
I personally am not accepting donations at this time, thank you.
composer testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.