StoreBrandValidate.php 416 B

12345678910111213141516171819202122
  1. <?php
  2. namespace app\validate\admin;
  3. use think\Validate;
  4. class StoreBrandValidate extends Validate
  5. {
  6. protected $failException = true;
  7. protected $rule = [
  8. 'brand_category_id|父级分类' => 'require|integer',
  9. 'brand_name|名称' => 'require|max:32',
  10. 'is_show|状态' => 'require|in:0,1',
  11. 'sort|排序' => 'require|integer',
  12. 'pic|图标' => 'max:128'
  13. ];
  14. }