Andrew Wallo 9 달 전
부모
커밋
4d7eaf6775
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      app/Models/Accounting/BudgetAllocation.php

+ 2
- 2
app/Models/Accounting/BudgetAllocation.php 파일 보기

@@ -2,7 +2,7 @@
2 2
 
3 3
 namespace App\Models\Accounting;
4 4
 
5
-use App\Casts\MoneyCast;
5
+use App\Casts\DocumentMoneyCast;
6 6
 use App\Concerns\CompanyOwned;
7 7
 use App\Enums\Accounting\BudgetIntervalType;
8 8
 use Illuminate\Database\Eloquent\Factories\HasFactory;
@@ -28,7 +28,7 @@ class BudgetAllocation extends Model
28 28
         'start_date' => 'date',
29 29
         'end_date' => 'date',
30 30
         'interval_type' => BudgetIntervalType::class,
31
-        'amount' => MoneyCast::class,
31
+        'amount' => DocumentMoneyCast::class,
32 32
     ];
33 33
 
34 34
     public function budgetItem(): BelongsTo

Loading…
취소
저장