php-flasher/flasher-notyf
PHPFlasher - A powerful & easy-to-use package for adding flash messages to Laravel or Symfony projects. Provides feedback to users, improves engagement & enhances user experience. Intuitive design for beginners & experienced developers. A reliable, flexible solution.
1,231,776
9
| Install | |
|---|---|
composer require php-flasher/flasher-notyf |
|
| Latest Version: | v2.5.1 |
| PHP: | >=8.2 |
| License: | MIT |
| Last Updated: | Mar 28, 2026 |
| Links: | GitHub · Packagist |
Maintainer: yoeunes
PHPFlasher Notyf Adapter (Prime)
Notyf adapter for PHPFlasher. Lightweight and modern toast notifications.
Requirements
- PHP >= 8.2
- PHPFlasher ^2.5.1
Installation
composer require php-flasher/flasher-notyf
Quick Start
// Basic usage
notyf('Operation completed successfully!', 'success');
notyf('An error occurred.', 'error');
notyf('Information message.', 'info');
notyf('Warning message.', 'warning');
// With options
notyf('Success message', 'success', [
'duration' => 4000,
'position' => [
'x' => 'right',
'y' => 'top',
],
]);
// Custom notification
notyf('Custom message', 'custom-type');
Features
- Simple API:
success(),error(),info(),warning(),flash() - Notyf Options:
duration,position,ripple,id - Modern Design: Clean, minimal design with smooth animations
- Type Safety: Full PHP type hints and PHPStan support
- Helper Functions: Global
notyf()helper for quick access
Available Methods
// Success notification
notyf($message, 'success', $options, $title);
// Error notification
notyf($message, 'error', $options, $title);
// Info notification
notyf($message, 'info', $options, $title);
// Warning notification
notyf($message, 'warning', $options, $title);
// Custom notification type
notyf($message, $type, $options, $title);
// With options
notyf($message, 'success', [
'duration' => 4000,
'position' => [
'x' => 'right',
'y' => 'top',
],
], $title);
Documentation
Complete documentation: php-flasher.io