paul-lab / easyadmin-notification-bundle
Symfony's Easyadmin notification's bundle
Installs: 32
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=8.1
- easycorp/easyadmin-bundle: ^4.6.6
- marc-mabe/php-enum: ^4.7
Requires (Dev)
- amphp/amp: ^2.6.2
- phpmd/phpmd: ^2.13.0
- phpro/grumphp: ^1.16.0
- phpstan/phpstan: ^1.10.20
- phpunit/phpunit: ^10.2.2
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ^3.7.2
- vimeo/psalm: ^5.12.0
This package is auto-updated.
Last update: 2025-03-21 17:20:36 UTC
README
Symfony Notification Bundle for EasyAdmin bundle
Doctrine additional config:
doctrine: dbal: types: notification_level: PaulLab\NotificationBundle\DBAL\Types\NotificationLevelType
Easy admin sample configuration:
easy_admin: design: templates: layout: '@PaulLabNotification/layouts/layout.html.twig' entities: Notification: translation_domain: 'PaulLabNotification' class: PaulLab\NotificationBundle\Entity\Notification controller: PaulLab\NotificationBundle\Controller\NotificationController disabled_actions: ['edit', 'new'] list: batch_actions: ['delete', 'markRead'] fields: - { property: level, label: notification.level, template: '@PaulLabNotification/field/notification_level.html.twig' } - { property: source, label: notification.source } - { property: message, label: notification.message } - { property: send_at, label: notification.send_at } - { property: read_at, label: notification.read_at } sort: ['send_at', 'DESC'] filters: - { property: source, label: notification.source } - { property: read_at, label: notification.read_at, type: date } show: fields: - { property: level, label: notification.level, template: '@PaulLabNotification/field/notification_level.html.twig' } - { property: source, label: notification.source } - { property: message, label: notification.message } - { property: send_at, label: notification.send_at }