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.
 
 
 
 
 

17 lines
441 B

@if(Session::has('flash_notification.message'))
@php
$level = Session::get('flash_notification.level');
if ($level == 'info') {
$level = 'information';
}
@endphp
<script src="{{ asset('assets/js/plugins/noty.js') }}"></script>
<script>
noty({
type: '{{ $level }}',
layout: 'bottomRight',
text: '{{ Session::get('flash_notification.message') }}',
timeout: 3000
});
</script>
@endif