0

我已经设法将 Pines Notify 集成到 Laravel 4 中。

第一个问题:

通知没有删除按钮。

这是一个代码示例:

     @if ($message = Session::get('success'))

  $.pnotify({
    title: 'Success!',
    text: '{{ $message }}',
    type: 'info',
    icon: false
  });

@endif

第二个问题:

其次,我查看了 Pines Notify 网站上的一些堆栈。我如何在 Laravel 中使用它们?我已经尝试过这样的事情,但它不起作用:

     @if ($message = Session::get('success'))

  $.pnotify({
    function show_stack_bottomleft(type) {
    title: 'Success!',
    text: '{{ $message }}',
    type: 'info',
    icon: false
  }
  });

@endif
4

1 回答 1

0

首先,

@if ($message == Session::get('success'))

  $.pnotify({
    title: 'Success!',
    text: '{{ $message }}',
    type: 'info',
    icon: false
  });

@endif

您错过了 if 运算符中的“==”。

于 2013-08-17T09:51:13.333 回答