Updated characterisitic name label on resource and added characteristic name, item description column on view report
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 11s
This commit is contained in:
@@ -211,7 +211,7 @@ class ProductCharacteristicsMasterResource extends Resource
|
|||||||
})
|
})
|
||||||
->required(),
|
->required(),
|
||||||
Forms\Components\TextInput::make('name')
|
Forms\Components\TextInput::make('name')
|
||||||
->label('Name')
|
->label('Characteristics Name')
|
||||||
->reactive()
|
->reactive()
|
||||||
->afterStateUpdated(function ($state, callable $set) {
|
->afterStateUpdated(function ($state, callable $set) {
|
||||||
$set('updated_by', Filament::auth()->user()?->name);
|
$set('updated_by', Filament::auth()->user()?->name);
|
||||||
@@ -332,13 +332,13 @@ class ProductCharacteristicsMasterResource extends Resource
|
|||||||
->alignCenter()
|
->alignCenter()
|
||||||
->searchable()
|
->searchable()
|
||||||
->sortable(),
|
->sortable(),
|
||||||
Tables\Columns\TextColumn::make('line.name')
|
Tables\Columns\TextColumn::make('item.description')
|
||||||
->label('Line')
|
->label('Item Description')
|
||||||
->alignCenter()
|
->alignCenter()
|
||||||
->searchable()
|
->searchable()
|
||||||
->sortable(),
|
->sortable(),
|
||||||
Tables\Columns\TextColumn::make('characteristics_type')
|
Tables\Columns\TextColumn::make('line.name')
|
||||||
->label('Characteristics Type')
|
->label('Line')
|
||||||
->alignCenter()
|
->alignCenter()
|
||||||
->searchable()
|
->searchable()
|
||||||
->sortable(),
|
->sortable(),
|
||||||
@@ -352,10 +352,16 @@ class ProductCharacteristicsMasterResource extends Resource
|
|||||||
->alignCenter()
|
->alignCenter()
|
||||||
->searchable()
|
->searchable()
|
||||||
->sortable(),
|
->sortable(),
|
||||||
// Tables\Columns\TextColumn::make('machine.work_center')
|
Tables\Columns\TextColumn::make('characteristics_type')
|
||||||
// ->label('Work Center')
|
->label('Characteristics Type')
|
||||||
// ->alignCenter()
|
->alignCenter()
|
||||||
// ->sortable(),
|
->searchable()
|
||||||
|
->sortable(),
|
||||||
|
Tables\Columns\TextColumn::make('name')
|
||||||
|
->label('Characteristics Name')
|
||||||
|
->alignCenter()
|
||||||
|
->searchable()
|
||||||
|
->sortable(),
|
||||||
Tables\Columns\TextColumn::make('inspection_type')
|
Tables\Columns\TextColumn::make('inspection_type')
|
||||||
->label('Inspection Type')
|
->label('Inspection Type')
|
||||||
->alignCenter()
|
->alignCenter()
|
||||||
|
|||||||
Reference in New Issue
Block a user