Skip to content

Instantly share code, notes, and snippets.

@localdisk
Created July 2, 2015 04:25
Show Gist options
  • Select an option

  • Save localdisk/e71781484feaf4750456 to your computer and use it in GitHub Desktop.

Select an option

Save localdisk/e71781484feaf4750456 to your computer and use it in GitHub Desktop.
notifications.blade.php
@if (count($errors) > 0)
<div class="alert alert-danger alert-block">
<button type="button" class="close" data-dismiss="alert">&times;</button>
<h4>Error</h4>
<ul>
@foreach($errors->all() as $e)
<li>{{ $e }}</li>
@endforeach
</ul>
</div>
@endif
@if ($message = Session::get('success'))
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<h4>Success</h4>
{{ $message }}
</div>
@endif
@if ($message = Session::get('error'))
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<h4>Error</h4>
{{ $message }}
</div>
@endif
@if ($message = Session::get('warning'))
<div class="alert alert-warning">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<h4>Warning</h4>
{{ $message }}
</div>
@endif
@if ($message = Session::get('info'))
<div class="alert alert-info">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
<h4>Info</h4>
{{ $message }}
</div>
@endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment