@model IEnumerable @{ ViewBag.Title = "Medical_Equipment_On_show"; }

There Are Some Medical Equipments

@* @foreach (var item in Model) { }
@Html.DisplayNameFor(model => model.equipmentname) @Html.DisplayNameFor(model => model.equipmentimage) @Html.DisplayNameFor(model => model.price)
@Html.DisplayFor(modelItem => item.equipmentname) @Html.DisplayFor(modelItem => item.price) @Html.ActionLink("Book Now", "Details", new { id = item.id }, new { @class = "btn btn-success my-5" })
*@
@foreach (var item in Model) {
Equipment Image
@Html.DisplayFor(modelItem => item.equipmentname)

Price: @Html.DisplayFor(modelItem => item.price)

@Html.ActionLink("Book Now", "bookeqppment", new { id = item.id }, new { @class = "btn btn-success my-5" })
}