You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
586 B
10 lines
586 B
@if (Session::has('flash_notification.message'))
|
|
@if (Session::has('flash_notification.overlay'))
|
|
@include('flash::modal', ['modalClass' => 'flash-modal', 'title' => Session::get('flash_notification.title'), 'body' => Session::get('flash_notification.message')])
|
|
@else
|
|
<div class="alert alert-{{ Session::get('flash_notification.level') }} notifier text-center">
|
|
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
|
|
{{ Session::get('flash_notification.message') }}
|
|
</div>
|
|
@endif
|
|
@endif
|