Skip to content

Instantly share code, notes, and snippets.

@felixwetell
Last active March 15, 2021 19:20
Show Gist options
  • Save felixwetell/399bc4aad27f39e08f0037b179e2a64b to your computer and use it in GitHub Desktop.
Save felixwetell/399bc4aad27f39e08f0037b179e2a64b to your computer and use it in GitHub Desktop.
Partial view - Session flash message example for Laravel 8.x with Bootstrap 4
@if( session()->has( 'success' ) )
<div class="alert alert-success alert-dismissible fade show" role="alert">
{{ session()->get( 'success' ) }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
@elseif( session()->has( 'error' ) )
<div class="alert alert-danger alert-dismissible fade show" role="alert">
{{ session()->get( 'error' ) }}
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment