mkocansey / bladewind
BladewindUI — elegant Laravel Blade UI components powered by TailwindCSS
Requires
- php: >=8.1
- illuminate/support: ^10.0|^11.0|^12.0
Requires (Dev)
- symplify/monorepo-builder: ^11.0
Replaces
- mkocansey/bladewind-accordion: 4.2.1
- mkocansey/bladewind-alert: 4.2.1
- mkocansey/bladewind-avatar: 4.2.1
- mkocansey/bladewind-bell: 4.2.1
- mkocansey/bladewind-button: 4.2.1
- mkocansey/bladewind-card: 4.2.1
- mkocansey/bladewind-centered-content: 4.2.1
- mkocansey/bladewind-chart: 4.2.1
- mkocansey/bladewind-checkbox: 4.2.1
- mkocansey/bladewind-checkcards: 4.2.1
- mkocansey/bladewind-code: 4.2.1
- mkocansey/bladewind-colorpicker: 4.2.1
- mkocansey/bladewind-contact-card: 4.2.1
- mkocansey/bladewind-content: 4.2.1
- mkocansey/bladewind-core: 4.2.1
- mkocansey/bladewind-datepicker: 4.2.1
- mkocansey/bladewind-dropmenu: 4.2.1
- mkocansey/bladewind-empty-state: 4.2.1
- mkocansey/bladewind-filepicker: 4.2.1
- mkocansey/bladewind-forms: 4.2.1
- mkocansey/bladewind-horizontal-line-graph: 4.2.1
- mkocansey/bladewind-icon: 4.2.1
- mkocansey/bladewind-input: 4.2.1
- mkocansey/bladewind-listview: 4.2.1
- mkocansey/bladewind-modal: 4.2.1
- mkocansey/bladewind-navigation: 4.2.1
- mkocansey/bladewind-notification: 4.2.1
- mkocansey/bladewind-number: 4.2.1
- mkocansey/bladewind-pagination: 4.2.1
- mkocansey/bladewind-popover: 4.2.1
- mkocansey/bladewind-progress: 4.2.1
- mkocansey/bladewind-radio: 4.2.1
- mkocansey/bladewind-rating: 4.2.1
- mkocansey/bladewind-script: 4.2.1
- mkocansey/bladewind-select: 4.2.1
- mkocansey/bladewind-slider: 4.2.1
- mkocansey/bladewind-sortable: 4.2.1
- mkocansey/bladewind-spinner: 4.2.1
- mkocansey/bladewind-statistic: 4.2.1
- mkocansey/bladewind-tab: 4.2.1
- mkocansey/bladewind-table: 4.2.1
- mkocansey/bladewind-tag: 4.2.1
- mkocansey/bladewind-textarea: 4.2.1
- mkocansey/bladewind-theme-switcher: 4.2.1
- mkocansey/bladewind-timeline: 4.2.1
- mkocansey/bladewind-timepicker: 4.2.1
- mkocansey/bladewind-toggle: 4.2.1
- mkocansey/bladewind-tooltip: 4.2.1
This package is auto-updated.
Last update: 2026-06-22 01:17:31 UTC
README
BladewindUI is a collection of UI components built with TailwindCSS, Laravel Blade templates, and vanilla JavaScript. Every component is simple to use and ships with sensible defaults you can override per-project.
Installation
Install everything (recommended starting point)
This pulls in all components.
composer require mkocansey/bladewind
Install a component group
Each logical group is available as its own package. Install a group when you only need a subset of BladewindUI:
composer require mkocansey/bladewind-forms # all form components composer require mkocansey/bladewind-content # all content & display components composer require mkocansey/bladewind-navigation # all navigation components
Install a single component
Every component is its own Composer package. Install exactly what you need.
composer require mkocansey/bladewind-table composer require mkocansey/bladewind-accordion composer require mkocansey/bladewind-datepicker
Shared dependencies (icon, script, spinner, etc.) are pulled in automatically via Composer's dependency resolution.
First-time setup
After installing, publish the compiled CSS, JavaScript, and language files:
php artisan vendor:publish --tag=bladewind-public --force php artisan vendor:publish --tag=bladewind-lang --force
Add the stylesheet to the <head> of your layout:
<link href="{{ asset('vendor/bladewind/css/bladewind-ui.min.css') }}" rel="stylesheet"/>
Add the JavaScript before the closing </body> tag:
<script src="{{ asset('vendor/bladewind/js/helpers.js') }}"></script>
You are ready to use any component:
<x-bladewind::button>Save User</x-bladewind::button>
Full installation guide: bladewindui.com/install
Components
Components are organised into groups. Each group maps directly to a Composer package. Standalone packages (Button, Modal, Alert, Bell, Notification, Table, Spinner) sit outside any group.
Standalone packages
These components are their own packages and are not bundled into any group. They are pulled in as dependencies by other components that need them.
| Package | Composer name | Component(s) |
|---|---|---|
| Core | mkocansey/bladewind-core |
Shared helpers, CSS variables, helpers.js |
| Icon | mkocansey/bladewind-icon |
SVG icon wrapper (Heroicons) |
| Alert | mkocansey/bladewind-alert |
Alert |
| Bell | mkocansey/bladewind-bell |
Bell |
| Button | mkocansey/bladewind-button |
Button, Circle Button |
| Modal | mkocansey/bladewind-modal |
Modal, Modal Icon |
| Notification | mkocansey/bladewind-notification |
Notification |
| Spinner | mkocansey/bladewind-spinner |
Spinner, Shimmer, Processing, Process Complete |
| Table | mkocansey/bladewind-table |
Table, Table Icons |
Forms group — mkocansey/bladewind-forms
composer require mkocansey/bladewind-forms
# or install any single component
composer require mkocansey/bladewind-input
composer require mkocansey/bladewind-datepicker
...
| Package | Composer name | Component(s) |
|---|---|---|
| Checkbox | mkocansey/bladewind-checkbox |
Checkbox |
| Checkcards | mkocansey/bladewind-checkcards |
Checkcards, Checkcard |
| Colorpicker | mkocansey/bladewind-colorpicker |
Colorpicker |
| Datepicker | mkocansey/bladewind-datepicker |
Datepicker |
| Filepicker | mkocansey/bladewind-filepicker |
Filepicker (powered by FilePond) |
| Input | mkocansey/bladewind-input |
Input, Error |
| Number | mkocansey/bladewind-number |
Number stepper |
| Radio Button | mkocansey/bladewind-radio |
Radio Button |
| Select | mkocansey/bladewind-select |
Select, Select Item |
| Slider | mkocansey/bladewind-slider |
Slider |
| Textarea | mkocansey/bladewind-textarea |
Textarea |
| Timepicker | mkocansey/bladewind-timepicker |
Timepicker |
| Toggle | mkocansey/bladewind-toggle |
Toggle |
| Verification Code | mkocansey/bladewind-code |
Verification Code / OTP |
Content group — mkocansey/bladewind-content
composer require mkocansey/bladewind-content
# or install any single component
composer require mkocansey/bladewind-accordion
composer require mkocansey/bladewind-chart
...
| Package | Composer name | Component(s) |
|---|---|---|
| Accordion | mkocansey/bladewind-accordion |
Accordion, Accordion Item |
| Avatar | mkocansey/bladewind-avatar |
Avatar, Avatars |
| Card | mkocansey/bladewind-card |
Card, Contact Card |
| Centered Content | mkocansey/bladewind-centered-content |
Centered Content |
| Chart | mkocansey/bladewind-chart |
Chart (line, bar, pie, donut) |
| Contact Card | mkocansey/bladewind-contact-card |
Contact Card |
| Empty State | mkocansey/bladewind-empty-state |
Empty State |
| Horizontal Line Graph | mkocansey/bladewind-horizontal-line-graph |
Horizontal Line Graph |
| List View | mkocansey/bladewind-listview |
List View, List View Item |
| Popover | mkocansey/bladewind-popover |
Popover |
| Progress | mkocansey/bladewind-progress |
Progress Bar, Progress Circle |
| Rating | mkocansey/bladewind-rating |
Rating |
| Sortable | mkocansey/bladewind-sortable |
Sortable, Sortable Item |
| Statistic | mkocansey/bladewind-statistic |
Statistic |
| Tag | mkocansey/bladewind-tag |
Tag, Tags |
| Timeline | mkocansey/bladewind-timeline |
Timeline, Timelines |
| Tooltip | mkocansey/bladewind-tooltip |
Tooltip |
Navigation group — mkocansey/bladewind-navigation
composer require mkocansey/bladewind-navigation
# or install any single component
composer require mkocansey/bladewind-tab
composer require mkocansey/bladewind-pagination
...
| Package | Composer name | Component(s) |
|---|---|---|
| Dropmenu | mkocansey/bladewind-dropmenu |
Dropmenu, Dropmenu Item |
| Pagination | mkocansey/bladewind-pagination |
Pagination |
| Tab | mkocansey/bladewind-tab |
Tab, Tab Body, Tab Content, Tab Heading |
| Theme Switcher | mkocansey/bladewind-theme-switcher |
Theme Switcher (light / dark) |
How groups work
The three group packages (bladewind-forms, bladewind-content, bladewind-navigation) contain no code — they are
pure Composer metapackages whose only job is to pull in the right leaf packages. This means:
- Installing
mkocansey/bladewind-contentis identical to installing every content leaf package individually. - Uninstalling it and requiring just
mkocansey/bladewind-accordionis clean and leaves nothing behind. - Each leaf package registers its own Laravel service provider, so components are auto-discovered whether you install them individually or as part of a group.
Customising defaults
Publish the config file (available when using the full mkocansey/bladewind package):
php artisan vendor:publish --tag=bladewind-config
This creates config/bladewind.php in your project. Every attribute in every component has a default defined here.
Override them once and all component instances in your project will follow suit.
Full customisation guide: bladewindui.com/customize
Documentation
The complete documentation with extensive examples for each component is available at bladewindui.com
Questions and support
- Email: mike@bladewindui.com
- Twitter / X: @bladewindui
- Security vulnerabilities: please e-mail rather than opening a public issue
License
BladewindUI is open-sourced software licensed under the MIT licence.