srmklive/flash-notifications
最新稳定版本:v0.1.5
Composer 安装命令:
composer require srmklive/flash-notifications
包简介
Elegant Flash Notifications For Laravel
README 文档
README
Laravel 5 flash notifications, originally developed after the Laracasts video tutorial : Elegant Flash Messaging which uses SweetAlert.
Quick Installation
Run the following command to install the package through Composer.
composer require srmklive/flash-notifications
or in your composer.json file, add "srmklive/flash-notifications": ">=0.1" then run
composer update
Once this operation is complete, simply add both the service provider and facade classes to your project's config/app.php file:
Service Provider
'Srmklive\FlashAlert\FlashAlertServiceProvider', // Laravel 5.0 Srmklive\FlashAlert\FlashAlertServiceProvider::class, // Laravel 5.1 or greater
Facade
'FlashAlert' => 'Srmklive\FlashAlert\Facades\FlashAlert', // Laravel 5.0 'FlashAlert' => Srmklive\FlashAlert\Facades\FlashAlert::class, // Laravel 5.1 or greater
Publish Configuration & Views
php artisan vendor:publish
Usage
Simply call on FlashAlert to set your desired flash notification. There are a number of methods to assign different levels of priority (info, success, warning, and error).
Success
FlashAlert::success('Success', 'This is a success message.');
Info
FlashAlert::info('Info', 'This is an info message.');
Warning
FlashAlert::warning('Warning', 'This is a warning message.');
Error
FlashAlert::error('Error', 'This is an error message.');
Rendering
To render your flash notifications in your view, simply include the view partial in your master layout. Also add @yield('styles') & yield('scripts') in your master layout:
@include('flashalert::alert')
统计信息
- 总下载量: 2.42k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-29