mkocansey / bladewind

BladewindUI is a collection of elegant Laravel blade-based UI components spiced with TailwindCSS and Javascript.
https://bladewindui.com
MIT License
423 stars 38 forks source link
blade css html javascript laravel php tailwindcss ui ui-components

License


BladewindUI is a collection of UI components written purely using TailwindCSS, Laravel blade templates and Vanilla Javascript. These components are super simple to use and come with different levels of customization.

### Installation The full installation guide is available on https://bladewindui.com/install.
BladewindUI is very specific to Laravel since all components are written purely using blade syntax. To install in your Laravel project simply run this command in the terminal at the root of your project.

``` composer require mkocansey/bladewind ```
Next you need to **publish the package assets** by running this command, still in the terminal at the root of your Laravel project.
``` php artisan vendor:publish --provider="Mkocansey\Bladewind\BladewindServiceProvider" --tag=bladewind-public --force ```
Now include the BladewindUI css file in the <head> of your pages. This should ideally be done in the layouts file your app pages extend from. You will also need to include the css used for animating the modals and other elements.
``` ``` ``` ```
Finally, include the BladewindUI javascript file anywhere before the closing of the </body> tag of your pages. Again, this should ideally be done in the layouts file your app's pages extend from.
``` ```
You are now ready to start using any of the BladewindUI components in your application
``` Save User ```

### Components Include - **[Alert](https://bladewindui.com/component/alert)** - **[Avatar](https://bladewindui.com/component/avatar)** - **[Bell](https://bladewindui.com/component/bell)** - **[Button](https://bladewindui.com/component/button)** - **[Card](https://bladewindui.com/component/card)** - **[Centered Content](https://bladewindui.com/component/centered-content)** - **[Checkbox](https://bladewindui.com/component/checkbox)** - **[Datepicker](https://bladewindui.com/component/datepicker)** - **[Dropdown](https://bladewindui.com/component/dropdown)** - **[Dropmenu](https://bladewindui.com/component/dropmenu)** - **[Empty State](https://bladewindui.com/component/empty-state)** - **[Filepicker](https://bladewindui.com/component/filepicker)** - **[Horizontal Line Graph](https://bladewindui.com/component/horizontal-line-graph)** - **[Icon](https://bladewindui.com/component/icon)** - **[Input](https://bladewindui.com/component/input)** - **[List View](https://bladewindui.com/component/list-view)** - **[Modal](https://bladewindui.com/component/modal)** - **[Notification](https://bladewindui.com/component/notification)** - **[Process Indicator](https://bladewindui.com/component/process-indicator)** - **[Progress Bar](https://bladewindui.com/component/progress-bar)** - **[Radio Button](https://bladewindui.com/component/radio-button)** - **[Rating](https://bladewindui.com/component/rating)** - **[Select](https://bladewindui.com/component/select)** - **[Statistic](https://bladewindui.com/component/statistic)** - **[Spinner](https://bladewindui.com/component/spinner)** - **[Tab](https://bladewindui.com/component/tab)** - **[Table](https://bladewindui.com/component/table)** - **[Tag](https://bladewindui.com/component/tag)** - **[Textarea](https://bladewindui.com/component/textarea)** - **[Theme Switcher](https://bladewindui.com/component/theme-switcher)** - **[Timeline](https://bladewindui.com/component/timeline)** - **[Toggle](https://bladewindui.com/component/toggle)** - **[Verification Code](https://bladewindui.com/component/verification-code)**

Check out the full documentation on https://bladewindui.com.

## Questions and General Info If you want to ask anything at all or report a security vulnerability, please e-mail [mike@bladewindui.com](mailto:mike@bladewindui.com) or tweet [@bladewindui](https://twitter.com/bladewindui)
## License BladewindUI is an open-sourced library licensed under the [MIT license](https://opensource.org/licenses/MIT).