codingwithrk / rk-sweet-alert
A Laravel package to implement SweetAlert.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/codingwithrk/rk-sweet-alert
Requires
- php: ^7.4|^8.0
- laravel/framework: ^8.0|^9.0|^10.0|^11.0
README
Introduction
Hello fellow developers, using this package you can display sweet alerts.
How to Install
composer require codingwithrk/rk-sweet-alert
Add this before body closing tag
<x-rk-sweet-alert/>
After that in your controller
session()->flash('rk-alert', [ 'title' => 'Are you sure?', 'text' => 'You won\'t be able to revert this!', 'icon' => 'warning', 'confirmButtonText' => 'Yes, delete it!', 'showCancelButton' => true, 'confirmButtonColor' => '#3085d6', 'cancelButtonColor' => '#d33', ]);
publish vendor config file
php artisan vendor:publish --provider="Codingwithrk\RkSweetAlert\RkSweetAlertServiceProvider" --tag="config"
License
This is open-sourced software licensed under the MIT license.