Added created by and updated by column in production characteristic of livewire page
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 27s
Gemini PR Review / Gemini PR Review (pull_request) Failing after 17s
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 26s
Laravel Pint / pint (pull_request) Successful in 3m18s
Laravel Larastan / larastan (pull_request) Failing after 4m47s

This commit is contained in:
dhanabalan
2026-08-18 16:04:41 +05:30
parent 009e5f93a3
commit dbe1c0a1c2

View File

@@ -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,
]);
}