Koverae UI Builder is a flexible and intuitive interface builder package designed specifically for Laravel. Built with the power of Koverae’s ecosystem in mind, it allows developers to easily create, customize, and manage UI components like navigation bars, forms, buttons, and more—without the hassle of manual coding.
To get started, require the package via Composer:
composer require koverae/koverae-ui-builder
The package will automatically register a service provider and alias.
Optionally, publish the package's configuration file by running:
composer require koverae/koverae-ui-builder --provider"Koverae\KoveraeUiBuilder\KoveraeUiBuilderServiceProvider"
Publish the package's configuration file:
php artisan vendor:publish --tag=koverae-ui-builder-config
php artisan koverae:make-form <Component>
php artisan koverae:make-table <Component>
php artisan koverae:make-cart <Component>
php artisan koverae:make-form UserForm
php artisan koverae:make-table UserTable
php artisan koverae:make-cart UserCart
COMPONENT CREATED 🤙🏿
CLASS: App/Livewire/Form/UserForm
TAG: <livewire:form.user-form />
CLASS: App/Livewire/Table/UserTable
TAG: <livewire:table.user-table />
CLASS: App/Livewire/Cart/UserCart
TAG: <livewire:cart.user-cart />
To make a component inside a Laravel Module User
Currently the package only supports the following types of components: Form, Table and Cart.
php artisan koverae:module-component <Component> --type=form <Module>
php artisan koverae:module-component <Component> --type=table <Module>
php artisan koverae:module-component <Component> --type=cart <Module>
php artisan koverae:module-component UserForm --type=form User
php artisan koverae:module-component UserTable --type=table User
php artisan koverae:module-component UserCart --type=table User
MODULE COMPONENT CREATED 🤙🏿
CLASS: Modules/User/Livewire/Form/UserForm
TAG: <livewire:user::form.user-form />
CLASS: Modules/User/Livewire/Table/UserTable
TAG: <livewire:user::table.user-table />
CLASS: Modules/User/Livewire/Cart/UserCart
TAG: <livewire:user::cart.user-cart />
To use a component, simply place its tag wherever you want it to appear:
<!-- Component (Form) -->
<livewire:form.user-form />
<!-- Module Component (Form) -->
<livewire:user::form.user-form />
composer test
Please see CHANGELOG for more information 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.