Import Fun Completed and Sticker Master

This commit is contained in:
dhanabalan
2025-03-28 16:52:40 +05:30
parent ef4504155a
commit e46f290fd1
47 changed files with 1317 additions and 335 deletions

View File

@@ -27,21 +27,16 @@ class LineResource extends Resource
{
return $form
->schema([
Forms\Components\Select::make('plant_id')
->relationship('plant', 'name')
->required(),
// ->nullable(),
Forms\Components\Textarea::make('name')
->required(),
// ->columnSpanFull(),
Forms\Components\Textarea::make('type')
->required(),
//->columnSpanFull(),
Forms\Components\Select::make('plant_id')
->relationship('plant', 'name')
->required(),
Forms\Components\Select::make('block_id')
->relationship('block', 'name')
->required(),
Forms\Components\Select::make('shift_id')
->relationship('shift', 'name')
->required(),
]);
}
@@ -57,10 +52,6 @@ class LineResource extends Resource
->sortable(),
Tables\Columns\TextColumn::make('type')
->sortable(),
Tables\Columns\TextColumn::make('shift.name')
->sortable(),
Tables\Columns\TextColumn::make('block.name')
->sortable(),
Tables\Columns\TextColumn::make('plant.name')
->sortable(),
Tables\Columns\TextColumn::make('created_at')