'decimal:2', 'unit_price' => 'decimal:2', 'total_amount' => 'decimal:2', 'labor_hours' => 'decimal:2', 'labor_rate' => 'decimal:2', 'markup_percentage' => 'decimal:2', 'required' => 'boolean', ]; public function estimate(): BelongsTo { return $this->belongsTo(Estimate::class); } public function part(): BelongsTo { return $this->belongsTo(Part::class); } }