From c53ddd21926c284eb75e673a9d275765ae884f46 Mon Sep 17 00:00:00 2001 From: vine_liutk <961510893@qq.com> Date: Wed, 10 Aug 2022 15:04:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=87=E7=AB=A0=E6=A8=A1?= =?UTF-8?q?=E5=9E=8B=E7=99=BD=E5=90=8D=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/article/src/Models/Article.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/article/src/Models/Article.php b/packages/article/src/Models/Article.php index 7084158..491adca 100644 --- a/packages/article/src/Models/Article.php +++ b/packages/article/src/Models/Article.php @@ -18,7 +18,7 @@ class Article extends Model use HasDateTimeFormatter; use Filterable; - protected $fillable = ['author', 'category_id', 'admin_user_id', 'title', 'sub_title', 'cover', 'is_recommend', 'content', 'is_enable', 'sort', 'published_at', 'remarks', 'category_path']; + protected $fillable = ['author', 'category_id', 'admin_user_id', 'title', 'sub_title', 'cover', 'is_recommend', 'content', 'is_enable', 'sort', 'published_at', 'remarks', 'category_path', 'like_nums', 'read_nums']; protected $dates = ['published_at'];