update: add notice tags

This commit is contained in:
tokumeikoi
2022-04-15 02:45:52 +08:00
parent 0bcaf2889a
commit d20dce7f69
6 changed files with 14 additions and 6 deletions

View File

@ -11,6 +11,7 @@ class Notice extends Model
protected $guarded = ['id'];
protected $casts = [
'created_at' => 'timestamp',
'updated_at' => 'timestamp'
'updated_at' => 'timestamp',
'tags' => 'array'
];
}