*/ use HasFactory; /** * Get the period that owns the row. * * @return BelongsTo */ public function reportPeriod(): BelongsTo { return $this->belongsTo(ReportPeriod::class); } /** * Get the department that owns the row. * * @return BelongsTo */ public function department(): BelongsTo { return $this->belongsTo(Department::class); } /** * Get the values for the row. * * @return HasMany */ public function values(): HasMany { return $this->hasMany(MedicationExpenseValue::class); } }