Added inspection lot number in production characteristic resource page
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 31s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 19s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 27s
Laravel Pint / pint (pull_request) Successful in 4m5s
Laravel Larastan / larastan (pull_request) Failing after 4m32s

This commit is contained in:
dhanabalan
2026-08-18 17:10:37 +05:30
parent 292ff86e39
commit e0168b90b4

View File

@@ -170,6 +170,8 @@ class ProductionCharacteristicResource extends Resource
->label('Production Order'),
Forms\Components\TextInput::make('serial_number')
->label('Serial Number'),
Forms\Components\TextInput::make('inspection_lot_number')
->label('Inspection Lot No'),
Forms\Components\TextInput::make('characteristic_name')
->label('Characteristic Name'),
Forms\Components\TextInput::make('observed_value')
@@ -239,6 +241,11 @@ class ProductionCharacteristicResource extends Resource
->searchable()
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('inspection_lot_number')
->label('Inspection Lot No')
->searchable()
->alignCenter()
->sortable(),
Tables\Columns\TextColumn::make('serial_number')
->label('Serial Number')
->searchable()
@@ -280,11 +287,6 @@ class ProductionCharacteristicResource extends Resource
})
->alignCenter()
->sortable(),
// Tables\Columns\TextColumn::make('result')
// ->label('Result')
// ->searchable()
// ->alignCenter()
// ->sortable(),
Tables\Columns\TextColumn::make('remark')
->label('Remark')
->searchable()