2017 © Pedro Peláez
 

project alerts

Alert pNotify plugin, flash alerts integrted in Laravel.

image

seguce92/alerts

Alert pNotify plugin, flash alerts integrted in Laravel.

  • Thursday, September 7, 2017
  • by seguce92
  • Repository
  • 1 Watchers
  • 1 Stars
  • 193 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 10 % Grown

The README.md

Alerts

Alerts is a package for show alerts with pNotify jQuery plugin Bootstrap., (*1)

Alerts requires PHP >= 5.3, laravel 5.3.|5.4.|5.5.|5.6.|5.8.*, (*2)

Installation

You can install the package for your Laravel 5 project through Composer., (*3)

$ composer require seguce92/alerts

Register the service provider in app/config/app.php., (*4)

'Seguce92\Alerts\AlertsServiceProvider',

Add the alias to the list of aliases in app/config/app.php., (*5)

'Alerts' => 'Seguce92\Alerts\Facades\Alert',

Then run a few commands in the terminal: ``` bash $ php artisan vendor:publish, (*6)

## Configuration

Set icon to true to use the default icon for the selected style/type, false for no icon, or a string for your own icon class.
```php
'icon'  =>  true,

What styling classes to use. (Can be either "brighttheme", "jqueryui", "bootstrap2", "bootstrap3", "fontawesome", or a custom style object. See the source in the end of pnotify.js for the properties in a style object.), (*7)

'styling'   =>  'bootstrap3',

Delay in milliseconds before the notice is removed., (*8)

'delay' =>  '8000',

Whether to escape the content of the text. (Not allow HTML.), (*9)

'text_escape'   =>  false,

Display a drop shadow., (*10)

'shadow'    =>  false,

Opacity of the notice., (*11)

'opacity'   =>  1,

notification type [desktop, normal], (*12)

'desktop'   =>  false

Basic Usage

Controllers.php or routes/web.php, (*13)

Alert::info('description')->flash();

Alert::success('description')->flash();

Alert::warning('description')->flash();

Alert::error('description')->flash();

View.php, (*14)

add function before of section script - bootstrap.min.css or font-awesome.min.css - jquery.min.js, (*15)




{!! Alerts::all() !!}

The Versions

07/09 2017

dev-master

9999999-dev

Alert pNotify plugin, flash alerts integrted in Laravel.

  Sources   Download

MIT

The Requires

 

laravel bootstrap pnotify flash message

07/09 2017

v1.4.1

1.4.1.0

Alert pNotify plugin, flash alerts integrted in Laravel.

  Sources   Download

MIT

The Requires

 

laravel bootstrap pnotify flash message

08/09 2016

v1.3

1.3.0.0

Alert pNotify plugin, flash alerts integrted in Laravel.

  Sources   Download

MIT

The Requires

 

laravel bootstrap pnotify flash message