我正在使用 noty 库进行样式通知:在此处输入链接描述
它在没有样式的默认主题下工作我将源 css 和 js 放在 app.blade 中:
<link rel="stylesheet" type="text/css" href="{{asset('dashboard_files/plugins/noty/noty.css')}}">
<script src="{{asset('dashboard_files/plugins/noty/noty.min.js')}}"></script>
我在 _sessions.blade.php 中加入了以下代码:
<script>
@if(session('success'))
new Noty({
theme: 'relax',
type: 'success',
layout:'topRight',
text: "{{session('success')}}",
timeout:2000,
killer: true
}).show();
</script>
@endif