Updated fillable order in model file
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled

This commit is contained in:
dhanabalan
2026-02-16 12:21:36 +05:30
parent f5d9adb516
commit 67ffbf68fd

View File

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