znck/flash

This package is abandoned and no longer maintained. The author suggests using the laracasts/flash package instead.

Easy flash notifications for laravel 5

v1.2.6 2016-01-12 20:21 UTC

This package is not auto-updated.

Last update: 2022-02-01 12:46:08 UTC


README

Easy flash notifications for Laravel 5

Installation

First, pull in the package through Composer.

"require": {
    "znck/flash": "~1.2"
}

And then, if using Laravel 5, include the service provider within app/config/app.php.

'providers' => [
    'Znck\Flash\FlashServiceProvider'
];

And, for convenience, add a facade alias to this same file at the bottom:

'aliases' => [
    'Flash' => 'Znck\Flash\Flash'
];

Usage

Within your controllers, before you perform a redirect...

public function store()
{
    Flash::message('Welcome Aboard!');

    return Redirect::home();
}

You may also do:

  • Flash::info('Message')
  • Flash::success('Message')
  • Flash::error('Message')
  • Flash::warning('Message')
  • Flash::overlay('Modal Message', 'Modal Title')

This will set a few keys in the session:

  • 'znck.flash.notifications' - Session key for flash notification's message bag

Each message will have these keys:

  • 'message' - The message you're flashing
  • 'level' - A string that represents the HTML class for displaying the message
  • 'sort' - Level weight used to sort the messages.

Alternatively, again, you may reference the flash() helper function, instead of the facade. Here's an example:

/**
 * Destroy the user's session (logout).
 *
 * @return Response
 */
public function destroy()
{
    Auth::logout();

    flash()->success('You have been logged out.');

    return home();
}

Or, for a general information flash, just do: flash('Some message');.

With this message flashed to the session, you may now display it in your view(s). Maybe something like:

@foreach(flash()->get() as $notification)
    <div class="alert alert-{{ $notification['level'] }}">
        <button type="button" class="close" data-dismiss="alert" aria hidden="true">&times;</button>

        {!! $notification['message'] !!}
    </div>
@endforeach

You may also do:

  • Flash::get()
  • flash()->get()

Flash::get() or flash()->get() function can take an optional variable to filter the result. Eg:

php
Flash::get('*'); // To get all messages.
Flash::get('info'); // To get only messages with info level.
Flash::get('info|warning'); // To get messages with info or warning level
    

You can publish the config file to add custom message levels and reorder messages.

// Default messagle levels and their sort order
[
    'classes' => [
        'error'   => 'danger',
        'warning' => 'warning',
        'success' => 'success',
        'info'    => 'info',
    ],

    'levels'  => [
        'error'   => 400,
        'warning' => 300,
        'success' => 200,
        'info'    => 100,
    ]
];

Note that this package is optimized for use with Twitter Bootstrap.

Because flash messages and overlays are so common, if you want, you may use (or modify) the views that are included with this package. Simply append to your layout view:

@include('znck::flash.notifications')

Example

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
</head>
<body>

<div class="container">
    @include('flash::message')

    <p>Welcome to my website...</p>
</div>

<script src="//code.jquery.com/jquery.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

<!-- This is only necessary if you do Flash::overlay('...') -->
<script>
    $('#flash-overlay-modal').modal();
</script>

</body>
</html>

If you need to modify the flash message partials, you can run:

php artisan vendor:publish

The two package views will now be located in the `app/views/packages/laracasts/flash/' directory.

Flash::message('Welcome aboard!');

return Redirect::home();

https://dl.dropboxusercontent.com/u/774859/GitHub-Repos/flash/message.png

Flash::error('Sorry! Please try again.');

return Redirect::home();

https://dl.dropboxusercontent.com/u/774859/GitHub-Repos/flash/error.png

Flash::overlay('You are now a Laracasts member!');

return Redirect::home();

https://dl.dropboxusercontent.com/u/774859/GitHub-Repos/flash/overlay.png