'boolean', ]; public function user(): BelongsTo { return $this->belongsTo(User::class); } public function name(): Attribute { return Attribute::make( get: fn () => $this->original_name ?? '', ); } }