2017 © Pedro Peláez
 

package alerts

Laravel Alerts with SweetAlerts

image

socieboy/alerts

Laravel Alerts with SweetAlerts

  • Monday, November 16, 2015
  • by socieboy
  • Repository
  • 2 Watchers
  • 18 Stars
  • 4,613 Installations
  • JavaScript
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 2 Open issues
  • 1 Versions
  • 5 % Grown

The README.md

Laravel 5.1 Alerts

Installation

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')

Usage

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

SweetAlerts website

http://t4t5.github.io/sweetalert/, (*10)

The Versions

16/11 2015

dev-master

9999999-dev

Laravel Alerts with SweetAlerts

  Sources   Download

MIT

by Francisco Sepulveda