fix: 文章标题长度限制

This commit is contained in:
2025-05-24 14:26:23 +08:00
parent 20dad3ca92
commit 1393a3925b

View File

@@ -16,7 +16,7 @@ class ArticleValidate extends Validate
protected $rule = [
'language_id' => 'require|integer',
'category_id' => 'require|integer',
'title' => 'require|max:64',
'title' => 'require|max:128',
'image' => 'max:125',
'link' => 'max:255',
'desc' => 'max:255',