带有laravel 5.2的自定义通知系统

时间:2016-09-04 15:44:51

标签: jquery css laravel notifications

我正在尝试使用laravel 5.2,jquery,html和css创建自定义通知系统。

这是我希望显示通知的刀片中的html。

<section class="notification">
    <div class="left-side">
       <i class="icon ion-ios-information-outline"></i>
    </div>
    <div class="right-side">
       {{ Session::get('nofitication_message')}}
       <a href="" class="pull-right close_notification">
          <i class="icon ion-close-round"></i>
       </a>
    </div>
 </section> 

jquery函数,我只显示通知5秒钟。

function shownotification()
{
    console.log('im called');

    $('.notification').addClass('show');

    setTimeout(function(){
        $('.notification').removeClass('show');
    }, 4000);

    $('.close_notification').onclick(function(e){
        e.preventDefault();

        $('.notification').removeClass('show');
    })
}

最后我从控制器发送的会话变量

返回redirect() - &gt; back() - &gt; with('nofitication_message','你的消息已发送!');

现在的问题是: 1.如何从会话中检索该通知消息 2.如何从刀片调用函数shownotification()来显示通知

提前致谢。

0 个答案:

没有答案