Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
Official Laravel package integrating Flowbite UI components and Blade components with Tailwind CSS.
flowbite-laravel is the official Laravel integration for Flowbite, providing Blade components that bring Flowbite's Tailwind CSS UI library into Laravel applications. This Composer package is built on Tailwind CSS and is released under the MIT License, with 25 stars on GitHub and credits to Dominique Thomas and all contributors.
flowbite-laravel is a Composer-installable Laravel package that lets developers render Flowbite UI components as Blade components without hand-copying markup. It is the first-party Laravel bridge for the Flowbite component library, so it follows Flowbite's design system and Tailwind CSS styling. The package's README shows an example PHP class, FlowbiteLaravel, with an echoPhrase method that outputs a simple string.
composer require flowbite/flowbite-laravel and the package integrates into a standard Laravel Composer workflow.php artisan vendor:publish --tag="flowbite-laravel-migrations" followed by php artisan migrate to add database tables.php artisan vendor:publish --tag="flowbite-laravel-config" to publish a config file (the README shows an empty array as its default contents).php artisan vendor:publish --tag="flowbite-laravel-views" so you can override them in your app.composer test.Laravel developers who want to use Flowbite's Tailwind CSS components inside Blade templates without copying HTML structures. It is also for teams standardizing on Flowbite who need a maintainable way to publish and override config, migrations, and views. If you are starting a Laravel project with Flowbite, this package is the integration layer.
The workflow starts with Composer: composer require flowbite/flowbite-laravel. Then you can publish migrations with the flowbite-laravel-migrations tag and run php artisan migrate, publish configuration with the flowbite-laravel-config tag, and publish views with the flowbite-laravel-views tag. The README's usage example instantiates the FlowbiteLaravel class and calls echoPhrase('Hello, Flowbite!') to output a string.
Yes, flowbite-laravel is released under the MIT License, so it is free to use in open-source, commercial, and personal projects. The license is stated in the repository's License File.
Install it with Composer by running composer require flowbite/flowbite-laravel. After installation you can optionally publish migrations, config, and views using the vendor:publish tags mentioned in the README.
flowbite-laravel is the official Laravel integration for Flowbite, providing Blade components that render Flowbite's Tailwind CSS UI components. It also includes publishable migrations, config, views, and an example PHP class called FlowbiteLaravel.
Yes, the package is built for Flowbite's Tailwind CSS component library, so Tailwind CSS is the styling system underneath the Blade components. The repository topics list both tailwindcss and flowbite.
The repository credits Dominique Thomas and all contributors. The package is hosted on the Flowbite GitHub organization and shows badges for tests, code style, and Packagist downloads.