ramonbakker1992/validation-rules-helper
最新稳定版本:v1.0.1
Composer 安装命令:
composer require ramonbakker1992/validation-rules-helper
包简介
This package allows validation rules to be defined globally and reused. This way you can use the same rules for your Controller, Action classes, API post/update routes, Livewire and other sections.
README 文档
README
This package allows validation rules to be defined globally and reused. This way you can use the same rules for your Controller, Action classes, API post/update routes, Livewire and other sections.
Installation
You can install the package via composer:
composer require ramonbakker1992/validation-rules-helper
Usage
Create a validation class that extends ValidationRules
class ProjectValidation extends ValidationRules { protected function validation() { return [ 'name' => 'string|max:100', 'number' => 'numeric|between:1000,9999', 'start_date' => 'date', 'end_date' => 'date|after_or_equal:start_date', ]; } }
Use in controller, action class or where ever you need the validation rules:
$rules = ProjectValidation::rules() ->required([ 'name', 'start_date' => 'required_with:end_date' ]) ->all();
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 14
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-08-13