Download the PHP package pestopancake/laravel-backpack-database-notifications without Composer
On this page you can find all versions of the php package pestopancake/laravel-backpack-database-notifications. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download pestopancake/laravel-backpack-database-notifications
More information about pestopancake/laravel-backpack-database-notifications
Files in pestopancake/laravel-backpack-database-notifications
Package laravel-backpack-database-notifications
Short Description Database notifications interface for Laravel Backpack
License MIT
Homepage https://github.com/pestopancake/laravel-backpack-notifications
Informations about the package laravel-backpack-database-notifications
Laravel Backpack Database Notifications
Easily add an admin interface for standard Laravel database notifications. This package includes:
- a sidebar item, with an optional notification count for the current user (refreshed with AJAX every second)
- an interface that shows the notifications in the database for the current user, with their (optional) action buttons;
The only thing left for you to do is to actually trigger notifications for your admins, wherever you want, using the standard Laravel syntax (example below).
Prerequisites
- Have Laravel Backpack installed backpack/crud v4.0. | 4.1.
- Follow the steps for laravel's database notifications prerequisites, e.g:
php artisan notifications:table
php artisan migrate
- Have Permission Manager installed Laravel-Backpack/PermissionManager
Installation
Backpack v5 / v6
composer require pestopancake/laravel-backpack-database-notifications
Backpack v4
composer require pestopancake/laravel-backpack-database-notifications:1.0.6
Usage
Publish the config file:
php artisan vendor:publish --provider="Pestopancake\\LaravelBackpackNotifications\\LaravelBackpackNotificationsServiceProvider" --tag=config
Show in side menu
Add a menu item to your 'resources/views/vendor/backpack/base/inc/sidebar_content.blade.php' by running:
php artisan backpack:add-menu-content "@include('backpack-database-notifications::sidebarMenuItem')"
Admin view
With the Permission Manager package installed you can assign the permission 'notifications admin' to users for them to see admin functionality.
To change the permission name edit 'admin_permission_name' in the databasenotifications config file.
Currently users with the admin permission can see/dismiss notifications for all users.
Create a notification
Use the included generic notification
Use in any other notification
The toArray method of the notification should be in this format:
The type will affect the colour of the toast notification (if toasts are enabled in the config)
Troubleshooting
Notification not created
- Make sure the model you are notifying matches the model defined in your backpack config at backpack.base.user_model_fqn (found in config/backpack/base.php)
Change log
See the changelog for more information on what has changed recently.
Todo
- Add unit tests
- translatable text
- notification preferences