*/ protected $fillable = [ 'name', 'physical_item_type_id', 'manufacturer_id', 'in_stock', 'blocked', 'selling_price', 'description', 'created_by', 'updated_by' ]; /** * Get the stock entries for this physical item. */ public function stockEntries(): HasMany { return $this->hasMany(PhysicalItem2Stock::class); } }