*/ protected $fillable = [ 'physical_item_id', 'field_updated', 'value_prev', 'value_new', ]; /** * Get the physical item associated with this stock handling record. * * Note: This requires configuring proper database connections to work across connections. */ public function physicalItem() { return $this->belongsTo(PhysicalItem::class, 'physical_item_id')->on('vat_warehouse'); } }