定制 aitor24/notifier 二次开发

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

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

aitor24/notifier

Composer 安装命令:

composer require aitor24/notifier

包简介

Laravel package to display notifications from different JS libraries easily in the frontend

README 文档

README

Notifier

StyleCI Version License

Laravel package to generate easily js notifications from php code

Getting started

Register Service Provider & Alias

If you're using laravel 5.5, you don't need to register Service Provider nor Alias. Else, you should do it!

Register Service Provider

Aitor24\Notifier\NotifierServiceProvider::class,

Register Alias

'Notifier' => Aitor24\Notifier\Facades\Notifier::class,

Simple example

<html>
    <head>
        <meta charset="utf-8">
        {!! Notifier::assets('sweetalert') !!}
    </head>
    <body>
        <!-- your content -->

        {!! Notifier::notify('Permission denied', 'error')->subtitle('You have not access to this site!') !!}
    </body>
</html>

Catching base session notifications

If you don't want to call notify function everytime, all function is your solution. This function catch all session base messages (success, info, error, and warning) and you only need to put the code in the layout as following example.

Controller example

You should do redirect with ->with() function to flash messages for next request on session.

public function redirect()
{
    return redirect()->route('welcome')->with('success', 'All done!');
}

Layout example

Then your layout should have similar structure to following code snippet

<html>
    <head>
        <meta charset="utf-8">
        {!! Notifier::assets('sweetalert') !!}
    </head>
    <body>
        <!-- your content -->

        {!! Notifier::all('sweetalert') !!}
    </body>
</html>

Function all() can be called without parameters, then the library will be the config('notifier.defaults.library') library.

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-12-15

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固