From 8813567f0b85ebaeeb903bb943b339747620bd2b Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 9 Sep 2025 19:03:13 +0530 Subject: [PATCH] Add missing created_at and updated_at fields to fillable attributes in ProductionQuantity model --- app/Models/ProductionQuantity.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/Models/ProductionQuantity.php b/app/Models/ProductionQuantity.php index 5b7a1ac..f3eeeb9 100644 --- a/app/Models/ProductionQuantity.php +++ b/app/Models/ProductionQuantity.php @@ -22,6 +22,12 @@ class ProductionQuantity extends Model "serial_number", "production_order", "operator_id", + // "success_status", + // "no_of_employee", + // "list_of_employee", + "created_at", + "updated_at" + ]; public function plant(): BelongsTo