getRecord(); // actual model instance // // Step 1: Fill the actual saved fields first // $this->form->fill([ // 'plant_id' => $model->plant_id, // 'item_id' => $model->item_id, // 'line_id' => $model->line_id, // 'machine_id' => $model->machine_id, // 'name' => $model->name, // 'characteristics_type' => $model->characteristics_type, // 'inspection_type' => $model->inspection_type, // // 'type' => $model->type, // 'upper' => $model->upper, // 'lower' => $model->lower, // 'middle' => $model->middle, // 'created_by' => $model->created_by, // 'updated_by' => $model->updated_by, // 'work_group_master_id' => optional($model->machine)->work_group_master_id, // ]); // } protected function getHeaderActions(): array { return [ Actions\ViewAction::make(), Actions\DeleteAction::make(), Actions\ForceDeleteAction::make(), Actions\RestoreAction::make(), ]; } }