'array', 'is_read' => 'boolean', 'received_at' => 'datetime', ]; public function getToPreviewAttribute(): string { $addrs = $this->to_addresses ?? []; return implode(', ', array_slice($addrs, 0, 2)) . (count($addrs) > 2 ? ' +' . (count($addrs) - 2) : ''); } public function getSenderAttribute(): string { return $this->from_name ? "{$this->from_name} <{$this->from_address}>" : $this->from_address; } }