roksta/toast
Composer 安装命令:
composer require roksta/toast
包简介
Toastr notifications in laravel
README 文档
README
Simple toastr notifications for laravel
Installation
Install this package via composer
composer require roksta/toast
Laravel auto-discovery will find the required service providers and aliases.
Toastr
Toastr is enabled by default via CDN.
Run
php artisan vendor:publish --provider="Roksta\Toastr\ToastrServiceProvider"
to publish the package view in your resources/assets/vendor/roksta/toastr.blade.php
Add @include('vendor.roksta.toastr') in your main view, under your jQuery file import eg,
<!DOCTYPE html> <html> <head> <title></title> <link rel="stylesheet" type="text/css" href="/css/app.css"> </head> <body> <div id="app"></div> <script type="text/javascript" src="js/app.js"></script> @include('vendor.roksta.toastr') </body> </html>
Use
Use the helper function toast() to make the default notifiers.
toast()->success('message', 'title'); toast()->info('message', 'title'); toast()->warning('message', 'title'); toast()->error('message', 'title');
You may specify all the other options dictated by Toastr by adding the options method to your toast.
toast()->success('message', 'title')->options([ 'timeOut' => 5000, 'closeButton' => 1, 'closeHtml' => '<button><i class="icon-off"></i></button>' ]);
Note that for boolean values such as closeButton => true should be expressed as 0 for false or 1 for true
Licence
The package is provided under the MIT License.
统计信息
- 总下载量: 2.25k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-27