我在控制器中使用了如下所示的会话
Session::flash('success', 'Profile updataed');
我有导入以下文件
use IlluminateSessionflash;
use IlluminateSupportFacadesSession;
并且我已经运行了 npm 安装 noty 命令
在我的资产文件夹引导程序中.js我包含
的文件require('noty');
之后,我在主布局文件中添加了以下脚本代码
<script>
@if(Session::has('success'))
noty([
type: 'success',
layout: 'top',
text: '{{ Session::get('success') }}'
]);
@endif
</script>
但它没有通知我我做错了什么
noty 文档建议您创建类似
new Noty({
...
text: 'Some notification text',
...
}).show();