mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
10 lines
381 B
PHP
10 lines
381 B
PHP
|
@if($toasts)
|
||
|
<script>
|
||
|
document.addEventListener("DOMContentLoaded", function() {
|
||
|
@foreach ($toasts as $toast)
|
||
|
toastr["{{ $toast['level'] }}"]({{ Js::from(\LibreNMS\Util\Clean::html($toast['message'], $purifier_config)) }}, "{{ $toast['title'] }}", {{ JS::from($toast['options']) }});
|
||
|
@endforeach
|
||
|
});
|
||
|
</script>
|
||
|
@endif
|