getRecord(); // actual model instance // Step 1: Fill the actual saved fields first $this->form->fill([ 'plant_id' => $model->plant_id, 'line_id' => $model->line_id, 'item_id' => $model->item_id, 'machine_id' => $model->machine_id, 'name' => $model->name, 'type' => $model->type, 'upper' => $model->upper, 'lower' => $model->lower, 'middle' => $model->middle, '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(), ]; } }