realrashid/sweet-alert
Laravel package to integrate SweetAlert2 popups: stylish alerts, confirmations, toasts, and notifications. Trigger from controllers or views with simple helpers and session flashes, customize options, and improve UX with minimal setup.
To get started with SweetAlert2, use Composer to add the package to your project's dependencies:
composer require realrashid/sweet-alert
!> The Below Step is Optional in Laravel 5.5 or above!
After installing the sweet-alert package, register the service provider
RealRashid\SweetAlert\SweetAlertServiceProvider::class,
in your config/app.php configuration file:
'providers' => [
/*
* Package Service Providers...
*/
RealRashid\SweetAlert\SweetAlertServiceProvider::class,
],
Also, add the Alert facade to the aliases array in your app configuration file:
'Alert' => RealRashid\SweetAlert\Facades\Alert::class,
How can I help you explore Laravel packages today?