A simple UI kit for Laravel. Based on Tailwind and AlpineJS.
You can install the package via composer:
composer require elegantly/blade-kitTo make it work with tailwindcss v4, you must add the following lines to your app.css.
@import "../../vendor/elegantly/blade-kit/resources/css/styles.css";
@source "../../vendor/elegantly/blade-kit/resources/views/**/*.blade.php";You can publish the config file with:
php artisan vendor:publish --tag="blade-kit-config"This is the contents of the published config file:
return [
 //
];Optionally, you can publish the views using
php artisan vendor:publish --tag="blade-kit-views"<x-kit::button color="white" class="rounded-md font-semibold">
    Button
</x-kit::button>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.