2017 © Pedro Peláez
 

library flash

Easy flash notifications

image

laracasts/flash

Easy flash notifications

  • Wednesday, June 20, 2018
  • by laracasts
  • Repository
  • 72 Watchers
  • 1770 Stars
  • 1,989,043 Installations
  • PHP
  • 168 Dependents
  • 2 Suggesters
  • 289 Forks
  • 22 Open issues
  • 14 Versions
  • 9 % Grown

The README.md

Easy Flash Messages for Your Laravel App

This composer package offers a Twitter Bootstrap optimized flash messaging setup for your Laravel applications., (*1)

Installation

Begin by pulling in the package through Composer., (*2)

composer require laracasts/flash

Next, as noted above, the default CSS classes for your flash message are optimized for Twitter Bootstrap. As such, either pull in the Bootstrap's CSS within your HTML or layout file, or write your own CSS based on these classes., (*3)

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">

Usage

Within your controllers, before you perform a redirect, make a call to the flash() function., (*4)

public function store()
{
    flash('Welcome Aboard!');

    return home();
}

You may also do:, (*5)

  • flash('Message')->success(): Set the flash theme to "success".
  • flash('Message')->error(): Set the flash theme to "danger".
  • flash('Message')->warning(): Set the flash theme to "warning".
  • flash('Message')->overlay(): Render the message as an overlay.
  • flash()->overlay('Modal Message', 'Modal Title'): Display a modal overlay with a title.
  • flash('Message')->important(): Add a close button to the flash message.
  • flash('Message')->error()->important(): Render a "danger" flash message that must be dismissed.

With this message flashed to the session, you may now display it in your view(s). Because flash messages and overlays are so common, we provide a template out of the box to get you started. You're free to use - and even modify to your needs - this template how you see fit., (*6)

@include('flash::message')

Example

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



@include('flash::message')

Welcome to my website..., (*7)

</body> </html>

If you need to modify the flash message partials, you can run:, (*8)

php artisan vendor:publish --provider="Laracasts\Flash\FlashServiceProvider"

The two package views will now be located in the resources/views/vendor/flash/ directory., (*9)

flash('Welcome Aboard!');

return home();
flash('Sorry! Please try again.')->error();

return home();
flash()->overlay('You are now a Laracasts member!', 'Yay');

return home();

Learn exactly how to build this very package on Laracasts!, (*10)

Hiding Flash Messages

A common desire is to display a flash message for a few seconds, and then hide it. To handle this, write a simple bit of JavaScript. For example, using jQuery, you might add the following snippet just before the closing </body> tag., (*11)

<script>
$('div.alert').not('.alert-important').delay(3000).fadeOut(350);
</script>

This will find any alerts - excluding the important ones, which should remain until manually closed by the user - wait three seconds, and then fade them out., (*12)

Multiple Flash Messages

Need to flash multiple flash messages to the session? No problem., (*13)

flash('Message 1');
flash('Message 2')->important();

return redirect('somewhere');

Done! You'll now see two flash messages upon redirect., (*14)

The Versions

20/06 2018

dev-master

9999999-dev

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

22/06 2017

3.0.2

3.0.2.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

20/06 2017

3.0.1

3.0.1.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

26/04 2017

3.0.0

3.0.0.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

11/07 2016

2.0.1

2.0.1.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

14/03 2016

2.0.0

2.0.0.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

22/12 2015

1.3.4

1.3.4.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

01/02 2015

1.3.3

1.3.3.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

01/02 2015

1.3.2

1.3.2.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

01/02 2015

1.3.1

1.3.1.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

13/09 2014

1.3

1.3.0.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

04/08 2014

1.2

1.2.0.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

25/07 2014

1.1

1.1.0.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires

30/06 2014

1.0

1.0.0.0

Easy flash notifications

  Sources   Download

MIT

The Requires

 

The Development Requires