'integer', ]; } // 3. Attribute public function amountFormatted(): Attribute { return Attribute::make( get: fn () => 'Rp '.number_format($this->amount, 0, ',', '.'), ); } public function createdAtFormatted(): Attribute { return Attribute::make( get: fn () => $this->created_at?->translatedFormat('l, d F Y H:i'), ); } public function createdByName(): Attribute { return Attribute::make( get: fn () => $this->createdBy?->profile?->full_name ?? $this->createdBy?->username, ); } // 4. Other Methods public static function mediaModuleName(): string { return 'expense'; } public function registerMediaCollections(): void { $this->addMediaCollection('photos'); } // 5. Relation public function cashTransaction(): BelongsTo { return $this->belongsTo(CashTransaction::class); } public function createdBy(): BelongsTo { return $this->belongsTo(User::class, 'created_by_id'); } }