Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

_ProductManufacturers.cshtml

@model IList

@using Nop.Core.Domain.Catalog

@if (Model.Count > 0)
{
    
@if (Model.Count == 1) { @T("Products.Manufacturer"): } else { @T("Products.Manufacturers"): } @for (var i = 0; i < Model.Count; i++) { var item = Model[i]; @item.Name if (i != Model.Count - 1) { , } }
}