'boolean', 'number_next' => TrimLeadingZeroCast::class, 'payment_terms' => PaymentTerms::class, 'font' => Font::class, 'template' => Template::class, 'item_name' => AsArrayObject::class, 'unit_name' => AsArrayObject::class, 'price_name' => AsArrayObject::class, 'amount_name' => AsArrayObject::class, ]; protected $appends = [ 'logo_url', ]; protected function logoUrl(): Attribute { return Attribute::get(static function (mixed $value, array $attributes): ?string { return $attributes['logo'] ? Storage::disk('public')->url($attributes['logo']) : null; }); } public function company(): BelongsTo { return $this->belongsTo(FilamentCompanies::companyModel(), 'company_id'); } public function createdBy(): BelongsTo { return $this->belongsTo(FilamentCompanies::userModel(), 'created_by'); } public function updatedBy(): BelongsTo { return $this->belongsTo(FilamentCompanies::userModel(), 'updated_by'); } public function scopeType(Builder $query, string | DocumentType $type): Builder { return $query->where($this->qualifyColumn('type'), $type); } public function scopeInvoice(Builder $query): Builder { return $query->scopes(['type' => [DocumentType::Invoice]]); } public function scopeBill(Builder $query): Builder { return $query->scopes(['type' => [DocumentType::Bill]]); } public static function availableNumberDigits(): array { return array_combine(range(1, 20), range(1, 20)); } public static function getNumberNext(?bool $padded = null, ?bool $format = null, ?string $prefix = null, int | string | null $digits = null, int | string | null $next = null, ?string $type = null): string { $initializeAttributes = new static; [$number_prefix, $number_digits, $number_next] = $initializeAttributes->initializeAttributes($prefix, $digits, $next, $type); if ($format) { return $number_prefix . static::getPaddedNumberNext($number_next, $number_digits); } if ($padded) { return static::getPaddedNumberNext($number_next, $number_digits); } return $number_next; } public function initializeAttributes(?string $prefix, int | string | null $digits, int | string | null $next, ?string $type): array { $number_prefix = $prefix ?? $this->getAttributeFromArray('number_prefix'); $number_digits = $digits ?? $this->getAttributeFromArray('number_digits'); $number_next = $next ?? $this->getAttributeFromArray('number_next'); if ($type) { $attributes = static::getAttributesByType($type); $number_prefix = $attributes['number_prefix'] ?? $number_prefix; $number_digits = $attributes['number_digits'] ?? $number_digits; $number_next = $attributes['number_next'] ?? $number_next; } return [$number_prefix, $number_digits, $number_next]; } public static function getAttributesByType(?string $type): array { $model = new static; $attributes = $model->newQuery()->type($type)->first(); return $attributes ? $attributes->toArray() : []; } /** * Get the next number with padding for dynamic display purposes. * Even if number_next is a string, it will be cast to an integer. */ public static function getPaddedNumberNext(int | string | null $number_next, int | string | null $number_digits): string { return str_pad($number_next, $number_digits, '0', STR_PAD_LEFT); } public static function getAvailableItemNameOptions(): array { $options = [ 'items' => 'Items', 'products' => 'Products', 'services' => 'Services', 'other' => 'Other', ]; return array_map(translate(...), $options); } public static function getAvailableUnitNameOptions(): array { $options = [ 'quantity' => 'Quantity', 'hours' => 'Hours', 'other' => 'Other', ]; return array_map(translate(...), $options); } public static function getAvailablePriceNameOptions(): array { $options = [ 'price' => 'Price', 'rate' => 'Rate', 'other' => 'Other', ]; return array_map(translate(...), $options); } public static function getAvailableAmountNameOptions(): array { $options = [ 'amount' => 'Amount', 'total' => 'Total', 'other' => 'Other', ]; return array_map(translate(...), $options); } public function getLabelOptionFor(string $optionType, ?string $optionValue) { $optionValue = $optionValue ?? $this->{$optionType}['option']; if (! $optionValue) { return null; } $options = match ($optionType) { 'item_name' => static::getAvailableItemNameOptions(), 'unit_name' => static::getAvailableUnitNameOptions(), 'price_name' => static::getAvailablePriceNameOptions(), 'amount_name' => static::getAvailableAmountNameOptions(), default => [], }; return $options[$optionValue] ?? null; } protected static function newFactory(): Factory { return DocumentDefaultFactory::new(); } }