Created
June 4, 2014 09:35
-
-
Save gravitano/67235e20d0a5f3cbf107 to your computer and use it in GitHub Desktop.
Flash Message !
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@if(Session::has('flash_message')) | |
<div class="alert alert-{{ Session::get('flash_type', 'info') }} alert-dismissable"> | |
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> | |
{{ Session::get('flash_message') }} | |
</div> | |
@endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment