yoeunes / notify
toastr.js, pnotify.js flush notifications for Laravel 5, 6, 7, 8 and Lumen
Installs: 95 217
Dependents: 6
Suggesters: 0
Security: 0
Stars: 55
Watchers: 2
Forks: 9
Open Issues: 3
Requires
- php: >=7.0
- illuminate/session: ^5.5 || ^6.0 || ^7.0 || ^8.0
- illuminate/support: ^5.5 || ^6.0 || ^7.0 || ^8.0
Requires (Dev)
- orchestra/testbench: ^2.0.4 || ^3.0 || ^4.0 || ^5.0
- phpunit/phpunit: ^4.8.36 || ^5.7 || ^6.0 || ^7.0 || ^8.3 || ^9.0
README
I'm working on a more advanced and more flexible solution for Laravel and Symfony, that include more drivers like : Tailwindcss, bootstrap, Noty, Sweet ALert, Notyf and Pnotify
I'm currently documenting all parts, but if you have time go check it here : https://php-flasher.github.io/
👀 This package helps you to add notifications to your Laravel 5 and Lumen projects.
Install
You can install the package using composer
$ composer require yoeunes/notify
Then add the service provider to config/app.php
. In Laravel versions 5.5 and beyond, this step can be skipped if package auto-discovery is enabled.
'providers' => [ ... Yoeunes\Notify\NotifyServiceProvider::class ... ];
As optional if you want to modify the default configuration, you can publish the configuration file:
$ php artisan vendor:publish --provider='Yoeunes\Notify\NotifyServiceProvider' --tag="config"
For Lumen :
- In
bootstrap/app.php
- uncomment
$app->withFacades();
- add bindings for ToastrServiceProvider :
$app->register(Yoeunes\Notify\NotifyServiceProvider::class);
- uncomment
- Add
config/session.php
, since it is not present inLumen
by default. You can takesession.php
from Laravel Official Repository
Usage:
Include jQuery and your notification plugin assets in your view template:
- Add your styles links tag or
@notify_css
- Add your scripts links tags or
@notify_js
- Add
@notify_render
to render your notification - use
notify()
helper function inside your controller to set a toast notification for info, success, warning or error
// Display an info toast with no title notify()->info('Are you the 6 fingered man?')
as an example:
<?php namespace App\Http\Controllers; use App\Post; use App\Http\Requests\PostRequest; use Illuminate\Database\Eloquent\Model; class PostController extends Controller { public function store(PostRequest $request) { $post = Post::create($request->only(['title', 'body'])); if ($post instanceof Model) { notify()->success('Data has been saved successfully!'); return redirect()->route('posts.index'); } notify()->error('An error has occurred please try again later.'); return back(); } }
After that add the @notify_render
at the bottom of your view to actualy render the notify notifications.
<!doctype html> <html> <head> <title>yoeunes/toastr</title> @notify_css </head> <body> </body> @notify_js @notify_render </html>
Other Options
// Set a warning toast, with no title notify()->warning('My name is Inigo Montoya. You killed my father, prepare to die!') // Set a success toast, with a title notify()->success('Have fun storming the castle!', 'Miracle Max Says') // Set an error toast, with a title notify()->error('I do not think that word means what you think it means.', 'Inconceivable!') // Override global config options from 'config/notify.php' notify()->success('We do have the Kapua suite available.', 'Turtle Bay Resort', ['timeOut' => 5000]) // for pnotify driver notify()->alert('We do have the Kapua suite available.', 'Turtle Bay Resort', ['timeOut' => 5000])
other api methods:
// You can also chain multiple messages together using method chaining
notify()->info('Are you the 6 fingered man?')->success('Have fun storming the castle!')->warning('doritos');
configuration:
// config/notify.php <?php return [ 'default' => 'toastr', 'toastr' => [ 'class' => \Yoeunes\Notify\Notifiers\Toastr::class, 'notify_js' => [ 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.1.4/toastr.min.js', ], 'notify_css' => [ 'https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.1.4/toastr.min.css', ], 'types' => [ 'error', 'info', 'success', 'warning', ], 'options' => [], ], 'pnotify' => [ 'class' => \Yoeunes\Notify\Notifiers\Pnotify::class, 'notify_js' => [ 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/pnotify/3.2.1/pnotify.js', ], 'notify_css' => [ 'https://cdnjs.cloudflare.com/ajax/libs/pnotify/3.2.1/pnotify.css', 'https://cdnjs.cloudflare.com/ajax/libs/pnotify/3.2.1/pnotify.brighttheme.css', ], 'types' => [ 'alert', 'error', 'info', 'notice', 'success', ], 'options' => [], ], 'sweetalert2' => [ 'class' => \Yoeunes\Notify\Notifiers\SweetAlert2::class, 'notify_js' => [ 'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/7.28.1/sweetalert2.min.js', 'https://cdn.jsdelivr.net/npm/promise-polyfill', ], 'notify_css' => [ 'https://cdnjs.cloudflare.com/ajax/libs/limonte-sweetalert2/7.28.1/sweetalert2.min.css', ], 'types' => [ 'error', 'info', 'question', 'success', 'warning', ], 'options' => [], ], ];
Credits
License
MIT