fusic/valii

0.6.16 2024-08-20 03:03 UTC

This package is auto-updated.

Last update: 2024-09-20 03:15:26 UTC


README

CircleCI Scrutinizer code quality (GitHub/Bitbucket) Codecov

设置

composer require fusic/valii

验证

  • 电话
    • 电话号码格式检查
  • 平假名
    • 仅检查平假名
  • 片假名
    • 仅检查片假名
  • 半角片假名
    • 检查半角片假名
  • 全角
    • 仅检查全角
  • 邮政编码
    • 检查邮政编码
  • 最大字节
    • 检查字符串宽度

用法

public function rules()
    {
        return [
            "name" => 'required|hiragana',
            "tel" =>  'tel',
            "zip_code"  => [
                'zip_code'
            ],
            "strict_zip_code"  =>  [
                'required',
                'zip_code:strict'
            ]
        ];
    }

自定义验证消息

php artisan vendor:publish