Skip to content

Instantly share code, notes, and snippets.

@gravitano
Created June 4, 2014 09:35
Show Gist options
  • Save gravitano/67235e20d0a5f3cbf107 to your computer and use it in GitHub Desktop.
Save gravitano/67235e20d0a5f3cbf107 to your computer and use it in GitHub Desktop.
Flash Message !
@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">&times;</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