2017 © Pedro Peláez
 

package laravel-sweetalert

Laravel Alerts with SweetAlerts

image

hubuki/laravel-sweetalert

Laravel Alerts with SweetAlerts

  • Monday, February 26, 2018
  • by grace150506
  • Repository
  • 1 Watchers
  • 0 Stars
  • 258 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 7 Forks
  • 0 Open issues
  • 2 Versions
  • 9 % Grown

The README.md

fork from socieboy/alerts, (*1)

Laravel 5 Alerts

Installation

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

Usage

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

SweetAlerts website

https://sweetalert.js.org/, (*9)

The Versions

26/02 2018

dev-master

9999999-dev

Laravel Alerts with SweetAlerts

  Sources   Download

MIT

by Hubuki Yu

26/02 2018

v1.0.3

1.0.3.0

Laravel Alerts with SweetAlerts

  Sources   Download

MIT

by Hubuki Yu