From 0ce614ab53787656487bf54a5f8446312dba09a0 Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Thu, 29 Jan 2026 10:26:49 +0530 Subject: [PATCH] Updated fillable values within single quote instead of double quote and commented unused line --- app/Models/InvoiceOutValidation.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app/Models/InvoiceOutValidation.php b/app/Models/InvoiceOutValidation.php index 84e88bd..6af8050 100644 --- a/app/Models/InvoiceOutValidation.php +++ b/app/Models/InvoiceOutValidation.php @@ -10,15 +10,17 @@ class InvoiceOutValidation extends Model { use SoftDeletes; + // protected $dates = ['deleted_at']; + protected $fillable = [ - "plant_id", - "qr_code", - "scanned_at", - "scanned_by", - "created_at", - "created_by", - "updated_by", - "updated_at" + 'plant_id', + 'qr_code', + 'scanned_at', + 'scanned_by', + 'created_at', + 'created_by', + 'updated_by', + 'updated_at', ]; public function plant(): BelongsTo