PriceType::class, 'price' => 'integer', ]; } protected function priceTypeLabel(): Attribute { return Attribute::make( get: fn () => $this->price_type->label(), ); } protected function priceFormatted(): Attribute { return Attribute::make( get: fn () => 'Rp '.number_format($this->price, 0, ',', '.'), ); } public function product(): BelongsTo { return $this->belongsTo(Product::class); } public function getActivitylogOptions(): LogOptions { return LogOptions::defaults() ->logOnly(['price_type', 'price']) ->logOnlyDirty() ->useLogName('Harga Produk'); } public function tapActivity(Activity $activity, string $eventName) { $activity->description = match ($eventName) { 'created' => 'TAMBAH', 'updated' => 'UBAH', 'deleted' => 'HAPUS', default => $activity->description, }; if (isset($activity->properties['attributes'])) { $attributeMap = [ 'price_type' => 'Jenis Harga', 'price' => 'Harga', ]; $properties = $activity->properties->toArray(); $localizeValues = function ($attrs) use ($attributeMap) { $newAttrs = []; foreach ($attrs as $key => $value) { $label = $attributeMap[$key] ?? $key; $displayValue = $value; if ($key === 'price_type' && $value instanceof \BackedEnum) { $displayValue = $value->value; } $newAttrs[$label] = $displayValue; } return $newAttrs; }; $properties['attributes'] = $localizeValues($properties['attributes']); if (isset($properties['old'])) { $properties['old'] = $localizeValues($properties['old']); } $activity->properties = collect($properties); } } }