'decimal:2', 'width' => 'decimal:2', 'height' => 'decimal:2', 'quantity' => 'integer', ]; /** * Get the custom order that owns this specification */ public function customOrder(): BelongsTo { return $this->belongsTo(CustomOrder::class); } /** * Get the print stock */ public function printStock(): BelongsTo { return $this->belongsTo(PrintStock::class); } }