Files
php-flasher/src/Notyf
Younes ENNAJI 34d780b0b7 Fix SCSS syntax errors and TypeScript build error
- Fix 15 theme SCSS files with orphaned comment closing markers
- Add type assertion to notyf.ts for private property access
- Regenerate build artifacts after fixes

The SCSS files had broken syntax from previous comment removal where
orphaned '*/' markers were left behind, causing SCSS parsing errors.
2026-01-16 00:52:20 +01:00
..

PHPFlasher Notyf Adapter

Latest Stable Version Total Downloads License

Notyf adapter for PHPFlasher.

Installation

composer require php-flasher/flasher-notyf-laravel  # Laravel
composer require php-flasher/flasher-notyf-symfony   # Symfony

Quick Start

// Basic usage
flash('notyf')->success('Operation completed successfully!');

// With options
flash('notyf')->info('New message received', [
    'duration' => 4000,
    'position' => 'top-right',
]);

Documentation

For complete documentation, visit php-flasher.io.

License

MIT