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