From dbe1c0a1c208b7f23851c7dcc4ae2ae176285946 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 18 Aug 2026 16:04:41 +0530 Subject: [PATCH] Added created by and updated by column in production characteristic of livewire page --- app/Livewire/PanelCheckList.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Livewire/PanelCheckList.php b/app/Livewire/PanelCheckList.php index 702afd5..28f4663 100644 --- a/app/Livewire/PanelCheckList.php +++ b/app/Livewire/PanelCheckList.php @@ -196,7 +196,8 @@ public $records = []; 'observed_value' => $value ?? null, 'status' => $status, 'inspection_status' => $finalInspectionStatus ?? null, - 'created_by' => $this->data['operator_id'] ?? null, + 'created_by' => $this->data['created_by'] ?? null, + 'updated_by' => $this->data['updated_by'] ?? null, ]); } -- 2.49.1