xgbnl/laravel-rule

集成验证规则

Installs: 94

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/xgbnl/laravel-rule

dev-main 2023-05-17 08:06 UTC

This package is auto-updated.

Last update: 2025-09-24 06:49:20 UTC


README

install

composer require xgbnl/laravel-rule

use

public function rules(): array
{
    return [
        'name' => 'chinese',
        'phone' => 'phone',
        'idCard' => 'id_card',
        'bankCard' => 'bank_card',
    ];
}