dotburo/nova-log-level-field
Composer 安装命令:
composer require dotburo/nova-log-level-field
包简介
Laravel Nova field for log and error level badges.
README 文档
README
Laravel Nova field to display an log level badge on index and detail views of models. Tiny single file package.
See the screenshots here.
Features
- Follows the PSR-3: Logger Interface log levels
- Big or small badge layout
- Customizable badge colors
- Super tiny, neither css, nor js files
Install from Packagist
composer require dotburo/nova-log-level-field
(For Nova 3.0, install dotburo/nova-log-level-field:^1.2 instead.)
Usage
The package expects the value of the field to be one of PSR-3 log level: emergency, alert, critical, error, warning, notice, info or debug.
// for example, in app/Nova/Post.php use Dotburo\NovaLogLevel\LogLevelField; use Psr\Log\LogLevel; // ... public function fields(Request $request) { return [ LogLevelField::make('Level') // Optional, show a small badge ->small() // Optional, override one or more default colors ->colors([ LogLevel::EMERGENCY => '#000000', ]), ]; }
License
The MIT License (MIT). Please see the license file for more information.
统计信息
- 总下载量: 60
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-12-08