php Laravel的Toastr通知,用于创建/删除条目

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel的Toastr通知,用于创建/删除条目相关的知识,希望对你有一定的参考价值。

https://codeseven.github.io/toastr/


1) download the min js and css files

2) include it in header CSS and footer JS in main layouts blade file

3) just before the end of the file where the JS is included:

<script>

@if ( Session::has('success') )
    toastr.success("{{ Session::get('success') }}")
@endif

</script>

4) in your controller where you plan to use Sessions:

use Session;

then in that controller:

 public function store(Request $request)
    {
        $project_new = new Project;
        $project_new->project_name = $request->project;
        $project_new->save() ;
        Session::flash('success', 'Project Created') ;
        return redirect()->back() ;
    }

以上是关于php Laravel的Toastr通知,用于创建/删除条目的主要内容,如果未能解决你的问题,请参考以下文章

Laravel-admin jquery-toastr 消息提醒播放音频

适用于Laravel和Lumen的tover.js通知

Laravel使用数据库队列给用户发送通知

Laravel使用数据库队列给用户发送通知

Toastr 使用 Laravel 会话变量作为警报消息

toastr通知插件的使用