app/Models/Allocation.php
use Illuminate\Database\Eloquent\Casts\Attribute; class Allocation extends Model{ // ... protected function address(): Attribute { return Attribute::make( get: fn () => (is_ipv6($this->alias) ? "[$this->alias]" : $this->alias) . ":$this->port", ); } // ...}