bladeuix/daisyui

A Laravel blade component library based on daisyUI.

Maintainers

Package info

github.com/bladeuix/daisyui

pkg:composer/bladeuix/daisyui

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v0.1.0-alpha.1 2026-04-12 13:37 UTC

This package is not auto-updated.

Last update: 2026-04-13 01:47:02 UTC


README

Latest Version on Packagist Total Downloads

BladeUIX DaisyUI is a Laravel package for adding daisyUI components to your Blade templates.

Requirements

Version PHP Laravel
1.x 8.2.x, 8.3.x, 8.4.x, 8.5.x 12.x, 13.x

Installation

Prerequisites

You need to have daisyUI installed in your project. If you haven't already, you can install it via your terminal:

npm i -D daisyui@latest

Package Installation

Install the BladeUIX DaisyUI package via Composer:

composer require bladeuix/daisyui

Configure Tailwind CSS

  • Ensure that daisyui tailwindcss plugin in installed.
  • ../../vendor/bladeuix/daisyui/src/View/Components/*.php is included in tailwindcss scan files.
@import "tailwindcss";

/*Your other @source...*/

@source "../../vendor/bladeuix/daisyui/src/View/Components/*.php";
@plugin "daisyui";

/*Your other css utilities...*/

Basic Usage

Once everything is installed and configured, you can use the components in your Blade templates:

<x-daisyui::button color="primary">
    Click Me
</x-daisyui::button>

Documentation

Full documentation is available at bladeuix.njoguamos.me.ke/daisyui.

Testing

composer test

Changelog

Please see GitHub Releases for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.