Laravel Alerts with SweetAlerts
fork from socieboy/alerts, (*1)
Add to your composer.json file the package., (*2)
"hubuki/laravel-sweetalert" : "dev-master"
Update your dependencies, (*3)
composer update
After install this package you have to set the service provider on your config/app.php file, (*4)
Hubuki\LaravelSweetAlert\LaravelSweetAlertServiceProvider::class
Add the JS script before close your </body> tag., (*5)
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
Include the alerts view to your master view. Add this code right after set the JS script file., (*6)
@include('LaravelSweetAlert::show')
On your controllers is a perfect place to use it, any way you can fire the alerts from jobs or events., (*7)
alert('Title', 'Message') alert()->error('Title', 'Message') alert()->success('Title', 'Message') alert()->overlay('Title', 'Message')
Override the type of overlay, (*8)
alert()->overlay('Title', 'Message', 'error') // success (default) // error // info
https://sweetalert.js.org/, (*9)