定制 whereislucas/laravel-bootstrap-toasts 二次开发

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

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

whereislucas/laravel-bootstrap-toasts

最新稳定版本:1.06

Composer 安装命令:

composer require whereislucas/laravel-bootstrap-toasts

包简介

Bootstrap Laravel Flash Messages

README 文档

README

This package, based on laracasts/flash provides an interface for Bootstrap 4.2 toast messages.

Installation

Get the package with composer

composer require whereislucas/laravel-bootstrap-toasts

If you are not using Laravel 5.5 or higher, include the service provider within your config/app.php file.

'providers' => [
    WhereIsLucas\LaravelBootstrapToasts\ToastServiceProvider::class,
];

This package is made for Bootstrap 4.2 and higher, be sure to include the css and js files on your page.

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" >
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>

Usage

First of all, include the snippet in your Blade templates

@include('laravel-bootstrap-toasts::message')

Then, in your controller, call the toast() method to create a toast message.

public function edit()
{
    toast('Post edited!');
    return redirect(route('posts.list'));
}

The toast method accepts the title and level optional arguments :

toast('message','level','title')

There are a few quick methods to modify the toast:

  • toast('Message')->success(): Set the toast level as "success".

  • toast('Message')->info(): Set the toast level as "info".

  • toast('Message')->error(): Set the toast level as "danger".

  • toast('Message')->warning(): Set the toast level as "warning".

  • toast('Message')->title("Toast title"): Set the toast title.

  • toast('Message')->important(): Add a close button to the toast.

Configuration & personalization

You can publish the configuration file to tweak the position of the toast or the default value for 'autohide'.

php artisan vendor:publish --provider="WhereIsLucas\LaravelBootstrapToasts\ToastServiceProvider" --tag="config"

You can publish the view and tweak it if you want!

php artisan vendor:publish --provider="WhereIsLucas\LaravelBootstrapToasts\ToastServiceProvider" --tag="views"

统计信息

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

GitHub 信息

  • Stars: 27
  • Watchers: 3
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-01-14