johanleroux/laravel-notify

Flexible flash notifications for Laravel

1.0.0 2018-08-01 18:24 UTC

This package is not auto-updated.

Last update: 2024-05-17 22:18:01 UTC


README

Install

composer require johanleroux/laravel-notify

Usage

notify()->flash('Welcome back!', 'success');

notify()->information('Welcome back!');

notify()->success('Profile updated!');

notify()->warning('Invalid Data!');

notify()->danger('User Deleted!');

Within a view, you can now check if a flash message exists and output it.

@if (notify()->ready())
    <div class="alert-box {{ notify()->type() }}">
        {{ notify()->message() }}
    </div>
@endif

Issues and contribution

Just submit an issue or pull request through GitHub. Thanks!

License

The MIT License (MIT). Please see License File for more information.