定制 oriceon/toastr-5-laravel 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

oriceon/toastr-5-laravel

最新稳定版本:2.0.0

Composer 安装命令:

composer require oriceon/toastr-5-laravel

包简介

Easy toastr notifications for Laravel 5

README 文档

README

Easy toastr.js notifications for Laravel 5, a ported version of Laravel 4 Toastr by kamaln7

Installation

  1. Either run composer require oriceon/toastr-5-laravel or add "oriceon/toastr-5-laravel": "dev-master" to the require key in composer.json and run composer install
  2. Add 'Kamaln7\Toastr\ToastrServiceProvider', to the providers key in config/app.php (optional for Laravel 5.5)
  3. Add 'Toastr' => 'Kamaln7\Toastr\Facades\Toastr', to the aliases key in config/app.php (optional for Laravel 5.5)

Usage

Include jQuery and toastr.js in your master view template, and the output of Toastr::render() afterwards:

<link href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css" rel="stylesheet">
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
{!! Toastr::render() !!}

Call one of these methods in your controllers to insert a toast:

  • 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

Setting custom Toastr options

You can set custom options for Toastr. Run:

php artisan vendor:publish

to publish the config file for Toastr. Then edit config/toastr.php and set the options array to whatever you want to pass to Toastr. These options are set as the default options and can be overridden by passing an array of options to any of the methods in the Usage section.

For a list of available options, see toastr.js' documentation.

统计信息

  • 总下载量: 464.29k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 92
  • 点击次数: 1
  • 依赖项目数: 3
  • 推荐数: 0

GitHub 信息

  • Stars: 78
  • Watchers: 4
  • Forks: 28
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-02-24