From 7485a908b7b0f6dc815eb57aa14ea6561d95a36e Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Sun, 6 Apr 2025 17:23:54 +0530 Subject: [PATCH] Added 'created_at' column to update night shift production plan --- app/Models/ProductionPlan.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Models/ProductionPlan.php b/app/Models/ProductionPlan.php index 4942dd4..b20a2c1 100644 --- a/app/Models/ProductionPlan.php +++ b/app/Models/ProductionPlan.php @@ -13,6 +13,7 @@ class ProductionPlan extends Model protected $fillable = [ "plant_id", "shift_id", + "created_at", "line_id", "plan_quantity", "production_quantity",