tjgazel/laravel-bs4-alert 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

tjgazel/laravel-bs4-alert

Composer 安装命令:

composer require tjgazel/laravel-bs4-alert

包简介

Bootstrap 4 alerts for laravel 5.*

README 文档

README

Latest Stable Version License Total Downloads


Other packages:


Installation

1) Run composer require tjgazel/laravel-bs4-alert to include this in your project.
Laravel 5.5 or later will automatically discover the provider and the alias.


2) Optional: Laravel 5.4 and below
Add TJGazel\Bs4Alert\Bs4AlertServiceProvider::class to providers in config/app.php
Add 'Bs4Alert' => TJGazel\Bs4Alert\Facades\Bs4Alert::class to aliases in config/app.php.

// config/app.php
'providers' => [
  // ...
  TJGazel\Bs4Alert\Bs4AlertServiceProvider::class,
],

'aliases' => [
  // ...
  'Bs4Alert' => TJGazel\Bs4Alert\Facades\Bs4Alert::class,
],

3) Run php artisan vendor:publish --provider="TJGazel\Bs4Alert\Bs4AlertServiceProvider" --tag="config" to publish the config file in config/bs4-alert.php.

4) Include @include('bs4-alert::template') somewhere in your template..

<!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
    <title></title>
    <link rel="stylesheet" type="text/css" href="/css/app.css">
</head>
<body>
    <div id="app">
        <header></header>
        
        @include('bs4-alert::template')

        <main>
            @yield('content')
        </main>

        <footer></footer>
    </app>
    <script type="text/javascript" src="js/app.js"></script>
</body>
</html>

5) Optional: Run php artisan vendor:publish --provider="TJGazel\Bs4Alert\Bs4AlertServiceProvider" --tag="template" to publish the template view.
Modify the published template located at resources/views/vendor/bs4-alert/template.php to your liking.

@if(session()->has(config()->get('bs4-alert.session_name')))
  @foreach(session()->get(config()->get('bs4-alert.session_name')) as $bs4Alert)
    <div class="alert {{ $bs4Alert['type'] }} alert-dismissible fade show" role="alert">
      <button type="button" class="close" data-dismiss="alert" aria-label="Close">
        <span aria-hidden="true">&times;</span>
      </button>
      @if($bs4Alert['title'])
        <h4 class="alert-heading">{!! $bs4Alert['title'] !!}</h4>
      @endif
      @foreach($bs4Alert['messages'] as $bs4AlertMessage)
        <p class="mb-0">{!! $bs4AlertMessage !!}</p>
      @endforeach
    </div>
  @endforeach
@endif

6) Optional: Modify the publish configuration file locate at config/bs4-alert.php to your liking.

<?php

return [
 
    'session_name' => 'bs4alert',

    // Set classname for alerts
    'class' => [
        'primary'   => 'alert-primary',
        'secondary' => 'alert-secondary',
        'success'   => 'alert-success',
        'danger'    => 'alert-danger',
        'warning'   => 'alert-warning',
        'info'      => 'alert-info',
        'light'     => 'alert-light',
        'dark'      => 'alert-dark',
    ]

];



Usage

Use the Toastr facade Bs4Alert:: or the helper function bs4Alert()-> to access the methods in this package.

Bs4Alert::light(array $message, string $title = null);

bs4Alert()->dark(array $message, string $title = null);

Examples:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use TJGazel\Bs4Alert\Facades\Bs4Alert;

class HomeController extends Controller
{

    public function index()
    {
        Bs4Alert::info(['welcome!']);

        return view('dashoard.index');
    }
}

You can also chain multiple messages together using:

bs4Alert()
    ->danger(['Something went wrong.'], 'Ops!')
    ->warning(['Try later.', 'Contact the administrator.', ], 'Please try one of the options below!');



All methods

bs4Alert()->primary();
bs4Alert()->secondary();
bs4Alert()->success();
bs4Alert()->danger();
bs4Alert()->warning();
bs4Alert()->info();
bs4Alert()->light();
bs4Alert()->dark();

Tanks for:

Bootstrap
Laravel

Author: Talles Gazel
Home page
Facebook

tjgazel/laravel-bs4-alert 适用场景与选型建议

tjgazel/laravel-bs4-alert 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 96 次下载、GitHub Stars 达 0, 最近一次更新时间为 2018 年 05 月 20 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「php」 「alerts」 「helper」 「laravel」 「facade」 「auto discover」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 tjgazel/laravel-bs4-alert 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 tjgazel/laravel-bs4-alert 我们能提供哪些服务?
定制开发 / 二次开发

基于 tjgazel/laravel-bs4-alert 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2018-05-20