如何使用带有laravel 5.5的Noty包

时间:2017-10-19 08:35:29

标签: laravel-5.5 noty

我在我的控制器中使用了如下所示的会话

Session::flash('success', 'Profile updataed');

我在文件下面导入

use Illuminate\Session\flash;
use Illuminate\Support\Facades\Session;

我已经运行了npm install noty命令

在我的资产文件夹bootstrap.js文件中,我有包含

require('noty');

之后我在主布局文件中添加了以下脚本代码

<script>
        @if(Session::has('success'))
            noty([
                type: 'success',
                layout: 'top',
                text: '{{ Session::get('success') }}'
                ]);
        @endif
    </script>

但它没有通知我我做错了什么

1 个答案:

答案 0 :(得分:0)

noty docs建议您创建一个类似

的通知
new Noty({
    ...
    text: 'Some notification text',
    ...
}).show();