*/ protected $fillable = [ 'room_id', 'from_user', 'to_user', 'content', 'is_secret', 'font_color', 'action', 'sent_at', ]; /** * Get the attributes that should be cast. * * @return array */ protected function casts(): array { return [ 'sent_at' => 'datetime', 'is_secret' => 'boolean', ]; } }