Download the PHP package voltageek/livewire-toasts-flowbite without Composer
On this page you can find all versions of the php package voltageek/livewire-toasts-flowbite. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download voltageek/livewire-toasts-flowbite
More information about voltageek/livewire-toasts-flowbite
Files in voltageek/livewire-toasts-flowbite
Package livewire-toasts-flowbite
Short Description Laravel Livewire toast notifications using Alpine JS & Flowbite component (Fork of aliowa/livewire-toasts)
License MIT
Homepage https://github.com/voltageek/livewire-toasts-flowbite
Informations about the package livewire-toasts-flowbite
Livewire Toasts
This package allows you to dynamically display toasts notifications via Laravel Livewire components. Toasts are powered by AlpineJS and are displayed without any delay.
Documentation
- Livewire Toasts
- Documentation
- Requirements
- Installation
- Usage
- Livewire Component Setup
- Showing Toasts
- Publishing Assets
- Custom View
Requirements
- AlpineJS version 3.0 or higher
Installation
You can install the package via composer:
Add the x-voltageek-livewire-toasts
component to your app layout view:
By default toasts are styled with TailwindCSS. To autodiscover necessary classes, either publish toasts views or add package views location to your tailwind.config.js
file:
Usage
Livewire Component Setup
Add Toastable
trait to your livewire component:
Showing Toasts
Show a toast providing a message to one of four methods toastSuccess
, toastWarning
, toastDanger
, toastInfo
:
Publishing Assets
Custom View
By default toasts view file uses TailwindCSS, but you can publish and change the way toasts will look on your website.
Now edit the view file resources/views/vendor/components/voltageek/livewire-toasts-flowbite/components/toasts.blade.php
. The package will use this view to render the component.