BAR & Grill

Relax in our Full Service Bar & Grill!

Indulge in a diverse culinary experience at Silverlake Bar & Grill, featuring an array of appetizers, pizza, wings, salads, and desserts—ensuring there’s something to satisfy every palate. Whether you’re taking a break from activities to savor a freshly baked pizza or unwinding as the kids play with classic sharables and a cold beer in hand, our menu caters to all tastes. Explore the full menu below for a delightful dining experience.

Craft Beer & Wine Selections

16 taps of rotating Craft Beer & Wine Selections from amazing local breweries, you will be sure to find your favorite!

Indoor or Outdoor Seating

Experience our cozy indoor seating with lots of tvs, complemented by a spacious outdoor patio adorned with twinkling lights and lush greenery for relaxed dining under the open sky.

Food Options for Every Palate

An array of appetizers, pizza, wings, salads, and desserts—ensuring there’s something to satisfy every palate.

Enjoy the best of Social Events

From weekly trivia, Taco Tuesday, Weekly Menu Features, Local bands and tap nights featuring the areas best breweries we have something to suit all!

*No outside food or drink allowed in the facility or The Bar & Grill.

Brandon Ward
Brandon WardDirector of Food & Beverage
Your Content Goes Here

What is happening at the Bar & Grill?

Nov 02 - 08
< Prev. Week Next Week >
Filter Results
Sunday, Nov 02
Monday, Nov 03
Tuesday, Nov 04
Wednesday, Nov 05
Thursday, Nov 06
Friday, Nov 07
Saturday, Nov 08
// Function to check if a specific query parameter and value exist in the URL
function hasQueryParam(param, value) {
// Construct the query string to search for
var queryString = param + “=” + value;
// Check if the URL contains the query string
return window.location.search.indexOf(queryString) > -1;
}

// Check if ‘category=2’ is already in the URL
if (!hasQueryParam(“category”, “”)) {
// Check if the URL already contains a query string
if (window.location.search === “”) {
// If not, append “?category=4” to the end of the URL
window.location.search = “?category=2”;
} else {
// If there’s already a query string, append “&category=4”
window.location.search += “&category=2”;
}
}