代码之家  ›  专栏  ›  技术社区  ›  Miri

Laravel:如何在Voyager管理面板中使用警报?

  •  3
  • Miri  · 技术社区  · 7 年前

    如何在voyager中使用警报?有什么例子吗?我想在提交带有空字段的帖子时显示警报。

    • Voyager版本:v0.11.14
    2 回复  |  直到 7 年前
        1
  •  8
  •   41686d6564    6 年前

    return redirect('path')->with(['message' => "Your Success Message", 'alert-type' => 'success']);
    

    或:

    return redirect('path')->with(['message' => "Your Error Message", 'alert-type' => 'error']);
    
        2
  •  5
  •   Abhinav Verma    7 年前

    toastr 为了简单地使用它,您可以使用以下方法将其作为事件激发:

    Toastr::warning($message, $title = null, $options = []) - add a warning toast
    Toastr::error($message, $title = null, $options = []) - add an error toast
    Toastr::info($message, $title = null, $options = []) - add an info toast
    Toastr::success($message, $title = null, $options = []) - add a success toast
    Toastr::add($type: warning|error|info|success, $message, $title = null, $options = []) - add a toast
    Toastr::clear() - clear all current toasts