hugojf / eflash
Laracasts flash messages wrapper with escaping
Requires
- php: ^7.1
- illuminate/support: ~5.8.0|^6.0|^7.0
- laracasts/flash: ^3.0
Requires (Dev)
- orchestra/testbench: ^4.0
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2025-03-22 10:07:29 UTC
README
This package wraps laracasts/flash
in order to help escape HTML special characters with almost the same API.
Facade usage is not implemented since I only use the flash
helper!
Why
I got tired of this
$username = e(auth()->user()->username); flash()->success("Welcome, $username!");
And wanted this
eflash()->success('Welcome, %s!', auth()->user()->username);
Installation
You can install the package via composer:
composer require hugojf/eflash
Usage
Usage should be similar to laracasts/flash
and sprintf
function.
The first parameter (the template) is NOT escaped in order to allow some HTML in the message.
eflash()->success($format, ...$args); eflash()->error($format, ...$args); eflash()->info($format, ...$args); eflash()->message($format, $level, ...$args); eflash()->warning($format, ...$args);
Examples
eflash()->success('Welcome %s!', $username); eflash()->error('Input <strong>%s</strong> is not valid!', $input); eflash()->info('Server %s was turned off!', $serverName)->important(); eflash()->message('A boring %s', $message)->overlay(); eflash()->warning('Joined team <i>%s</i>!', $teamName)->overlay();
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email hugo_jeller@hotmail.com instead of using the issue tracker.
Credits
License
The GNU GPLv3. Please see License File for more information.
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.