# Easy Flash Messages for Your Laravel App This composer package offers a Twitter Bootstrap optimized flash messaging setup for your Laravel applications. ## Installation Begin by pulling in the package through Composer. ```bash composer require laracasts/flash ``` Next, if using Laravel 5, include the service provider within your `config/app.php` file. ```php 'providers' => [ Laracasts\Flash\FlashServiceProvider::class, ]; ``` Finally, as noted above, the default CSS classes for your flash message are optimized for Twitter Bootstrap. As such, pull in the Bootstrap's CSS within your HTML or layout file. ```html ``` ## Usage Within your controllers, before you perform a redirect, make a call to the `flash()` function. ```php public function store() { flash('Welcome Aboard!'); return home(); } ``` You may also do: - `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. ```html @include('flash::message') ``` ## Example ```html
Welcome to my website...