Added sfg_number and machine_name into model file
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 10s

This commit is contained in:
dhanabalan
2025-11-26 19:34:58 +05:30
parent a7b6d72fb5
commit 4c93c3cdd6

View File

@@ -11,16 +11,18 @@ class ProcessOrder extends Model
use SoftDeletes; use SoftDeletes;
protected $fillable = [ protected $fillable = [
"plant_id", 'plant_id',
"item_id", 'item_id',
"process_order", 'process_order',
"coil_number", 'coil_number',
"order_quantity", 'order_quantity',
"received_quantity", 'received_quantity',
"created_at", 'sfg_number',
"created_by", 'machine_name',
"updated_by", 'created_at',
"updated_at" 'created_by',
'updated_by',
'updated_at',
]; ];
public function plant(): BelongsTo public function plant(): BelongsTo
@@ -32,5 +34,4 @@ class ProcessOrder extends Model
{ {
return $this->belongsTo(Item::class, 'item_id'); return $this->belongsTo(Item::class, 'item_id');
} }
} }