2017 © Pedro Peláez
 

notifications notifier

Laravel package to display notifications from different JS libraries easily in the frontend

image

aitor24/notifier

Laravel package to display notifications from different JS libraries easily in the frontend

  • Friday, December 15, 2017
  • by 24aitor
  • Repository
  • 1 Watchers
  • 5 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 3 Versions
  • 40 % Grown

The README.md

, (*1)

Notifier

StyleCI Version License , (*2)

Laravel package to generate easily js notifications from php code, (*3)

Getting started

Register Service Provider & Alias

If you're using laravel 5.5, you don't need to register Service Provider nor Alias. Else, you should do it!, (*4)

Register Service Provider

Aitor24\Notifier\NotifierServiceProvider::class,

Register Alias

'Notifier' => Aitor24\Notifier\Facades\Notifier::class,

Simple example

<html>
    <head>
        <meta charset="utf-8">
        {!! Notifier::assets('sweetalert') !!}
    </head>
    <body>
        <!-- your content -->

        {!! Notifier::notify('Permission denied', 'error')->subtitle('You have not access to this site!') !!}
    </body>
</html>

Catching base session notifications

If you don't want to call notify function everytime, all function is your solution. This function catch all session base messages (success, info, error, and warning) and you only need to put the code in the layout as following example., (*5)

Controller example

You should do redirect with ->with() function to flash messages for next request on session., (*6)

public function redirect()
{
    return redirect()->route('welcome')->with('success', 'All done!');
}

Layout example

Then your layout should have similar structure to following code snippet, (*7)

<html>
    <head>
        <meta charset="utf-8">
        {!! Notifier::assets('sweetalert') !!}
    </head>
    <body>
        <!-- your content -->

        {!! Notifier::all('sweetalert') !!}
    </body>
</html>

Function all() can be called without parameters, then the library will be the config('notifier.defaults.library') library., (*8)

The Versions

15/12 2017

dev-master

9999999-dev

Laravel package to display notifications from different JS libraries easily in the frontend

  Sources   Download

MIT

The Requires

 

15/12 2017

1.0.1

1.0.1.0

Laravel package to display notifications from different JS libraries easily in the frontend

  Sources   Download

MIT

The Requires

 

15/12 2017

1.0.0

1.0.0.0

Laravel package to display notifications from different JS libraries easily in the frontend

  Sources   Download

MIT

The Requires