'integer', 'shipping_cost' => 'integer', 'subtotal' => 'integer', 'total' => 'integer', ]; } // 3. Attribute public function createdAtFormatted(): Attribute { return Attribute::make( get: fn () => $this->created_at?->translatedFormat('l, d F Y H:i'), ); } public function discountFormatted(): Attribute { return Attribute::make( get: fn () => 'Rp '.number_format($this->discount, 0, ',', '.'), ); } public function shippingCostFormatted(): Attribute { return Attribute::make( get: fn () => 'Rp '.number_format($this->shipping_cost, 0, ',', '.'), ); } public function subtotalFormatted(): Attribute { return Attribute::make( get: fn () => 'Rp '.number_format($this->subtotal, 0, ',', '.'), ); } public function totalFormatted(): Attribute { return Attribute::make( get: fn () => 'Rp '.number_format($this->total, 0, ',', '.'), ); } // 4. Other Methods public static function mediaModuleName(): string { return 'purchase'; } public function registerMediaCollections(): void { $this->addMediaCollection('photos'); } // 5. Relation public function createdBy(): BelongsTo { return $this->belongsTo(User::class, 'created_by_id'); } public function items(): HasMany { return $this->hasMany(PurchaseItem::class); } public function ownerVerificationRequests(): MorphMany { return $this->morphMany(OwnerVerificationRequest::class, 'subject'); } public function pendingOwnerVerificationRequest(): MorphOne { return $this->morphOne(OwnerVerificationRequest::class, 'subject') ->where('status', OwnerVerificationStatus::PENDING) ->latestOfMany(); } public function supplier(): BelongsTo { return $this->belongsTo(Supplier::class); } }