@model List @{ ViewData["Title"] = "Customers"; }

Customer Management

Customer List
@foreach (var customer in Model) { }
ID Name Email Phone Address Created Date Actions
@customer.CustomerId @customer.Name @customer.Email @customer.Phone @customer.Address @customer.CreatedAt.ToString("dd.MM.yyyy")
@if (!Model.Any()) {

No customers found.

Add First Customer
}
@section Scripts { }