akhaled/laravel-hybrid-components

使用使用Tailwind和Livewire构建的Laravel组件

0.0.6-beta 2020-12-22 14:22 UTC

This package is auto-updated.

Last update: 2024-09-22 22:41:44 UTC


README

-- 正在建设中 --

使用Tailwind、AlpineJS和Livewire构建的Laravel组件

按钮

基本按钮

<x-hybrid-button>
    Delete
</x-hybrid-button>

模态框

基本模态框

<x-hybrid-modal times="true" cancel="true" confirm="false" open-on-init="false">
    <x-hybrid-button color="green">
        Open modal
    </x-hybrid-button>

    <x-slot name="title">
        My first modal
    </x-slot>

    <x-slot name="content">
        Content goes here
    </x-slot>

    <x-slot name="footer">
        <x-hybrid-button color="orange">Another action button</x-hybrid-button>
    </x-slot>
</x-hybrid-modal>