ranjith-dev #337

Merged
jothi merged 3 commits from ranjith-dev into master 2026-02-16 07:09:50 +00:00
Showing only changes of commit 67ffbf68fd - Show all commits

View File

@@ -5,23 +5,22 @@ namespace App\Models;
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class ProductCharacteristicsMaster extends Model class ProductCharacteristicsMaster extends Model
{ {
use SoftDeletes; use SoftDeletes;
protected $fillable = [ protected $fillable = [
'plant_id', 'plant_id',
'line_id',
'item_id', 'item_id',
'line_id',
'work_group_master_id', 'work_group_master_id',
'machine_id', 'machine_id',
'characteristics_type',
'name', 'name',
'inspection_type', 'inspection_type',
'characteristics_type',
'upper',
'lower', 'lower',
'upper',
'middle', 'middle',
'created_at', 'created_at',
'updated_at', 'updated_at',