*/ protected $fillable = [ 'room_id', 'from_user', 'to_user', 'content', 'is_secret', 'font_color', 'action', 'message_type', 'image_path', 'image_thumb_path', 'image_original_name', 'sent_at', ]; /** * 返回模型字段的类型转换配置。 * * @return array */ protected function casts(): array { return [ 'sent_at' => 'datetime', 'is_secret' => 'boolean', ]; } }