evolution-cms/evo-ui
Livewire + DaisyUI foundation for modern Evolution CMS manager modules. Provides an iframe layout with local assets, theme sync, a Livewire 4 bridge, config-driven tables/forms, and shared Blade components—no legacy manager CSS/JS or CDN dependencies.
Використовуйте evo-ui як shared declarative UI foundation. Consumer modules дають config, providers і persistence; evo-ui дає shell, components, state behavior, assets і visual contracts.
<x-evo::layout :title="$pageTitle">
<x-evo::module-tab-shell :tabs="$tabs" model="activeTab">
[@if](https://github.com/if)($activeTab === 'items')
<livewire:evo-ui.module-table preset="vendor.module.items" />
[@elseif](https://github.com/elseif)($activeTab === 'settings')
<livewire:evo-ui.form preset="vendor.module.settings" />
[@endif](https://github.com/endif)
</x-evo::module-tab-shell>
</x-evo::layout>
Не підключайте Bootstrap, jQuery, manager main.js, tabpane.js, Roboto, CDN
UI assets або legacy manager CSS всередині evo-ui-owned screens.
Використовуйте evo-ui.module-table для table/list CRUD, evo-ui.form для
settings/model forms і evo-ui.issue-workspace для provider-backed
list/kanban workspaces.
return [
'key' => 'vendor.module.settings',
'variant' => 'config',
'density' => 'compact',
'layout' => 'settings',
'actions' => [
['type' => 'save', 'label' => 'evo::global.action_save'],
],
];
composer test
composer drift
Generic UI behavior тестується в evo-ui. Module-specific business behavior тестується в consumer module.
How can I help you explore Laravel packages today?