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.
Fund package maintenance!
v2.6.1
2026-04-13 08:48 UTC
Requires
- php: >=8.2
- php-flasher/flasher: ^2.6.1
This package is auto-updated.
Last update: 2026-06-13 09:14:59 UTC
README
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