Updated fillable values within single quote instead of double quote and commented unused line
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

This commit is contained in:
dhanabalan
2026-01-29 10:26:49 +05:30
parent 1106e40a51
commit 0ce614ab53

View File

@@ -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