Skip to content

fengzi91/livewire-alert

Repository files navigation

livewire-alert

Build Status Packagist License

livewire alert 组件.

Installing

$ composer require zys/livewire-alert -vvv

Requirements

This package uses Livewire under the hood. Please make sure you include it in your dependencies before using this package.

  • PHP 7.2 or higher
  • Laravel 8
  • Livewire
  • tailwindcss

Usage

Add livewire-alert component

<body>
...
@livewire('livewire-alert')
</body>

Show message in livewire component

public function showMessage()
{
    ...
    $this->alert('info', 'Message~', ['content' => 'Message Content', 'timeout' => 3000]);
}

Show Message in javascript

window.livewire.emitTo('livewire-alert', 'livewireAlert', {
    type: 'info',
    message: 'Message',
    options: {
        content: 'Message content~',
        timeout: 3000,
    }
})

Contributing

You can contribute in one of three ways:

  1. File bug reports using the issue tracker.
  2. Answer questions or fix bugs on the issue tracker.
  3. Contribute new features or update the wiki.

The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.

License

MIT

About

laravel livewire 轻消息提示组件

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published