From 67ffbf68fd07db0f856c582731607c975742cecd Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Mon, 16 Feb 2026 12:21:36 +0530 Subject: [PATCH] Updated fillable order in model file --- app/Models/ProductCharacteristicsMaster.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/Models/ProductCharacteristicsMaster.php b/app/Models/ProductCharacteristicsMaster.php index ecf6a3e..931c04c 100644 --- a/app/Models/ProductCharacteristicsMaster.php +++ b/app/Models/ProductCharacteristicsMaster.php @@ -5,23 +5,22 @@ namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\SoftDeletes; -use Illuminate\Database\Eloquent\Factories\HasFactory; class ProductCharacteristicsMaster extends Model { - use SoftDeletes; + use SoftDeletes; protected $fillable = [ 'plant_id', - 'line_id', 'item_id', + 'line_id', 'work_group_master_id', 'machine_id', + 'characteristics_type', 'name', 'inspection_type', - 'characteristics_type', - 'upper', 'lower', + 'upper', 'middle', 'created_at', 'updated_at',