gnahotelsolutions/flasher

Flash notifications in Laravel
6,153 3
Install
composer require gnahotelsolutions/flasher
Latest Version:4.2.0
PHP:^8.2
License:MIT
Last Updated:Apr 7, 2026
Links: GitHub  ·  Packagist
Maintainer: lloople

Flasher

Latest Version on Packagist Total Downloads Software License

The gnahotelsolutions/flasher package provides an easy way to interact with flashed messages in your Laravel application.

Install

You can install the package via composer:

$ composer require gnahotelsolutions/flasher

Usage

The messages are stored in the notifications session key.

All notifications have a default duration property set to 5 seconds. You can use this property in your JavaScript to make notifications disappear automatically.

Creating notifications

Flasher::info("Welcome, {$user->name}");

Flasher::error('Incorrect password');

Flasher::warning('Remember to change your password');

Flasher::success('Password changed!');

If you want to use custom types, you can use the method createNotification

Flasher::createNotification('store', 'Someone bought a product!', null);

Check if there are pending notifications

@if (Flasher::any())
    <div class="alerts">
        ...
    </div>
@endif

Iterating over notifications

@foreach(Flasher::all() as $notification)
    <div class="alert alert-{{ $notification->getType() }}" data-duration="{{ $notification->getDuration() }}">
        {{ $notification->getMessage() }}
    </div> 
@endforeach

If you're using Bootstrap in your project, you can use getBootstrapClass() method. It will replace error with danger to match the framework's CSS class.

Testing

phpunit

Security

If you discover any security related issues, please email dllop@gna.es instead of using the issue tracker.

License

The MIT License (MIT).

Related Packages

gabrieloliverio/laravel5-generators

Database metadata-based generators for Laravel 5

1
erirk/paypalpayment

laravel-paypalpayment is simple package help you process direct credit card paym...

0
doctrine/dbal

Powerful PHP database abstraction layer (DBAL) with many features for database s...

628,058,007 9,707
laravel/framework

The Laravel Framework.

576,155,700 34,907
laravel/tinker

Powerful REPL for the Laravel framework.

485,678,092 7,440