Skip to content

Commit 0e53865

Browse files
Merge pull request #72 from khalidmaquilang/hotfix/si-78-remove-currency
SI-78 | Hotfix | remove currency
2 parents 77edc32 + bfdbd5f commit 0e53865

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

app/Filament/Resources/PurchaseOrderResource/RelationManagers/PurchaseOrderItemsRelationManager.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ public function table(Table $table): Table
2929
Tables\Columns\TextColumn::make('remaining_quantity')
3030
->getStateUsing(function ($record): int {
3131
return $record->quantity - $record->quantity_received;
32-
})
33-
->money(fn ($record) => $record->company->getCurrency()),
32+
}),
3433
])
3534
->filters([
3635
//

0 commit comments

Comments
 (0)