1
0
forked from poc/pds

Added remark column in invoice data validation resource page

This commit is contained in:
dhanabalan
2026-01-20 10:33:12 +05:30
parent 8032d5e549
commit 771e9351db

View File

@@ -59,6 +59,8 @@ class InvoiceDataValidationResource extends Resource
Forms\Components\TextInput::make('location')
->label('Location')
->required(),
Forms\Components\TextInput::make('remark')
->label('Remark'),
Forms\Components\Hidden::make('created_by')
->label('Created By')
->default(Filament::auth()->user()?->name),
@@ -123,6 +125,11 @@ class InvoiceDataValidationResource extends Resource
->alignCenter()
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('remark')
->label('Remark')
->alignCenter()
->searchable()
->sortable(),
Tables\Columns\TextColumn::make('created_at')
->label('Created At')
->alignCenter()