Package Data | |
---|---|
Maintainer Username: | amaralkarl |
Maintainer Contact: | kallbuloso@gmail.com (Amaral karl) |
Package Create Date: | 2020-04-28 |
Package Last Update: | 2020-04-28 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-17 03:04:46 |
Package Statistics | |
---|---|
Total Downloads: | 11 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
You can install the package using composer
$ composer require kallbuloso/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' => [
...
kallbuloso\Notify\NotifyServiceProvider::class
...
];
As optional if you want to modify the default configuration, you can publish the configuration file:
$ php artisan vendor:publish --provider='kallbuloso\Notify\NotifyServiceProvider' --tag="config"
bootstrap/app.php
$app->withFacades();
$app->register(kallbuloso\Notify\NotifyServiceProvider::class);
config/session.php
, since it is not present in Lumen
by default. You can take session.php
from Laravel Official Repository
Include jQuery and your notification plugin assets in your view template:
@notify_css
@notify_js
@notify_render
to render your notificationnotify()
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>kallbuloso/toastr</title>
@notify_css
</head>
<body>
</body>
@notify_js
@notify_render
</html>
// 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])
// 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');
// config/notify.php
<?php
return [
'default' => 'toastr',
'toastr' => [
'class' => \kallbuloso\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' => \kallbuloso\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' => \kallbuloso\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' => [],
],
];
MIT