jubayed / laravel-notify
toastr.js, pnotify.js flush notifications for Laravel
Requires
- php: ^7.1|^8.0
- illuminate/session: ^8.5
- illuminate/support: ^8.5
This package is auto-updated.
Last update: 2025-04-10 01:51:02 UTC
README
Install
You can install the package using composer
$ composer require jubayed/laravel-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' => [ ... Jubayed\Notify\NotifyServiceProvider::class ... ];
As optional if you want to modify the default configuration, you can publish the configuration file:
$ php artisan vendor:publish --provider='Jubayed\Notify\NotifyServiceProvider' --tag="config"
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' => \Jubayed\Notify\Notifiers\Toastr::class, 'notify_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' => \Jubayed\Notify\Notifiers\Pnotify::class, 'notify_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' => \Jubayed\Notify\Notifiers\SweetAlert2::class, 'notify_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' => [], ], ];
Alert Box (Laravel)
A helper package to flash a bootstrap alert to the browser via a Facade or a helper function.
<div class="alert alert-info fade in"> <i class="fa-fw fa fa-smile-o"></i> <strong>Title</strong> Description </div>
Usage
Within any view file.
@include('alert::alert')
Within any Controller.
public function index() { // helper function - default to the 'info' alert('Title', 'Lorem Ipsum'); // return object first alert()->info('Title', 'Lorem Ipsum'); // via the facade Alert::info('Title', 'Lorem Ipsum'); return view('home'); }
The different 'levels' are:
alert()->info('Title', 'Lorem Ipsum');
alert()->success('Title', 'Lorem Ipsum');
alert()->warning('Title', 'Lorem Ipsum');
alert()->danger('Title', 'Lorem Ipsum');
The different arguments:
alert()->info('Title', 'Lorem Ipsum', false);
// without the iconalert()->info('Title', 'Lorem Ipsum', 'smile-o');
// specify the icon classalert()->message('Title', 'Lorem Ipsum', 'smile-o', 'info');
// specify the type of levelalert()->message('Title', 'Lorem Ipsum', 'smile-o', 'info', false);
// do not show the 'close' button
The view partial can be found here resources\views\vendor\alert\alert.blade
.