Livewire Toggle switch with alert notification

Tech Stack: bootstrap-5, new, livewire

Demo

Name Email Active
Zora Kreiger rlindgren@example.com
Rhett Walker celestino35@example.net
Mr. Omer Barton MD nturcotte@example.net
Denis Dibbert dach.murphy@example.com
Mr. Felix Bailey III koelpin.santa@example.com
Dr. Kayli Mante I eda51@example.com
Ashlynn Hickle PhD alverta12@example.net
Josephine Glover leffler.jermey@example.com
Rodrick Conroy qskiles@example.com
Peggie Rath PhD nona.gleichner@example.com

Code
Please login to View/Download the Code

Sorry, this component's code is restricted
Get Livewiredemos-Pro
Sorry, this component's code is restricted
Get Livewiredemos-Pro

Usage


      @livewire('toggle-switch-alert', [
                        'model' => $dummyUser,
                        'field' => 'isActive',
                        'status' => [
                            'off' => "User {$dummyUser->name} is disabled",
                            'on' => "User {$dummyUser->name} is enabled"
                        ]
                    ])
    

Documentation

This component is an extention of Simple Toggle Switch Component

This is a toggle-switch with an alert livewire component using bootstrap-5 which alters the boolean field in the database and also shows an alert notification to the user.

For the alerts, we have done a simple integration with Notyf javascript plugin. You can read more about Livewire Notyf Integration.