Laravel Alerts with SweetAlerts
Add to your composer.json file the package., (*1)
"socieboy/alerts" : "dev-master"
Update your dependencies, (*2)
composer update
After install this package you have to set the service provider on your config/app.php file, (*3)
Socieboy\Alerts\AlertServiceProvider::class
Copy the required assets of SweetAlert to your public folder. Those assets would be place in the css and js respective directory., (*4)
php artisan vendor:publish --tag=alerts
Then in your master view add those styles and scripts. Put this style between the <head> </head> tags, (*5)
<link rel="stylesheet" type="text/css" href="css/sweetalert.css">
Add the JS script before close your </body> tag., (*6)
<script src="js/sweetalert.js"></script>
Include the alerts view to your master view. Add this code right after set the JS script file., (*7)
@include('Alerts::show')
On your controllers is a perfect place to use it, any way you can fire the alerts from jobs or events., (*8)
alert('Title', 'Message') alert()->error('Title', 'Message') alert()->success('Title', 'Message') alert()->overlay('Title', 'Message')
Override the type of overlay, (*9)
alert()->overlay('Title', 'Message', 'error') // success (default) // error // info
http://t4t5.github.io/sweetalert/, (*10)