@model InventoryTraker.Web.Models.OpportunityViewModel[]
@{
ViewBag.Title = "Opportunities";
}
@foreach (var opportunity in Model)
{
@opportunity.CustomerName - @opportunity.Title
@opportunity.CreateDate.ToShortDateString()
@opportunity.Description
}