Dog Friendly Sunday Roast Marketing

The Dog is the Decision Maker

There is a family of four getting ready for a Sunday walk. They want to walk for an hour, find a pub, eat a roast, and have a few pints. But there is a fifth member of the family: Barnaby the Labrador.

Running this problem at your pub?

Here's the system I use at The Teal Farm to fix it — real-time labour %, cash position, and VAT liability in one dashboard. 30-minute setup. £97 once, no monthly fees.

Get Pub Command Centre — £97 →

No monthly fees. 30-day money-back guarantee. Built by a working pub landlord.

If your pub does not explicitly, loudly, and aggressively market itself as “Dog Friendly,” that family is not coming. They will not “risk it.” They will not leave the dog in the car (social suicide). They will go to your competitor who has a picture of a Spaniel on their homepage.

The “Paw Pound” in the UK is massive. Dog owners are often affluent, they stay longer (because the dog is tired), and they drink more. If you are merely “tolerating” dogs, you are leaving money on the table. You need to recruit the dog.

The Philosophy: The “Permission” Signal

Rory Sutherland would call this “Signalling.” Many pubs are dog friendly, but they keep it a secret. They have a small sticker on the bottom of the door that says “Dogs Welcome.” That is not enough. British people are polite. They are terrified of being scolded. They are terrified of walking into a carpeted pub with muddy boots and being told to leave. They need Explicit Permission.

You need to broadcast a signal that says: “We don’t just allow dogs; we prefer them to humans.” When you remove the anxiety of “Will we be allowed in?”, you become the default choice for every dog walker within a 5-mile radius.

The Tactics: How to Monetise the Mutt

Don’t just put a water bowl out. Turn the dog into a customer.

1. The “Dog Menu” (The High Margin Upsell) If the humans are eating Roast Beef, they feel guilty that the dog is under the table eating nothing.

  • The Tactic: Print a separate “K9 Menu.”
    • The Good Boy Sausage: £2.00
    • The Sunday Scrap Bowl (Trimmed meat + Gravy): £3.50
  • The Math: A sausage costs you 30p. You sell it for £2.00. That is an 85% GP.
  • It stops them feeding the dog from their own plate (which is messy) and monetises the waste/trimmings.

2. The “Muddy Boots” Signage A sign saying “Dogs Welcome” is generic.

  • The Tactic: A chalkboard outside saying: “Muddy Boots and Muddy Paws Encouraged. We have a fire and biscuits.”
  • This targets the specific anxiety of the Sunday Walker. It tells them: “You don’t need to dress up. Come as you are.”

3. The “Influencer” Strategy You can pay a food blogger £200 to post a photo of your roast. Or you can do this for free.

  • The Tactic: Take a photo of a cute dog in your pub every Sunday.
  • Caption it: “Dog of the Week: Meet Buster. He recommends the Roast Beef.”
  • Tag the owner.
  • Why: Dog photos get 3x more engagement than food photos. The owner will share it. Their friends will see it. It is viral gold dust.

4. The Zoning Strategy (Operational Sanity) Not everyone likes dogs. You cannot let them run wild in the main dining room.

  • The Tactic: Create a “Dog Zone” (usually the bar or a specific snug) and a “Dog Free Zone” (the carpeted restaurant).
  • Market this clarity. “Dogs welcome in the bar area.” It manages expectations for the allergy sufferers and the dog lovers alike.

The Software Pitch: Forecasting the Walk-Ins

The “Dog Walker” demographic is hard to book. They are weather-dependent. They are walk-ins. How do you prep for them? If it’s sunny, you might get 30 extra walk-ins with dogs. If it rains, zero.

You need a baseline. You need to know that your booked covers are profitable, so the walk-ins are just the cherry on top.

The Paw Pound Calculator | Smart Pub Tools @import url(‘https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap’); body { font-family: ‘Inter’, sans-serif; background-color: #f8fafc; } h1, h2, h3, .serif { font-family: ‘Playfair Display’, serif; } .glass-panel { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border: 1px solid rgba(226, 232, 240, 0.8); } .pattern-bg { background-image: radial-gradient(#cbd5e1 1px, transparent 1px); background-size: 20px 20px; }

The Paw Pound Calculator

Monetise the Mutt & Recruit the Walker

Pub Audit

We assume ~15% of these could be dog owners if marketed correctly.

No Signage / Secret Small “Dogs Welcome” Sticker “Muddy Boots & Paws” Chalkboard
Water Bowl Only (Tolerating) Free Biscuits (Welcoming) Sausages & Scrap Bowls (Monetising)
Generic Pub/Food Photos “Dog of the Week” Features
// Initialize Icons lucide.createIcons(); // Update slider value display document.getElementById(‘covers’).addEventListener(‘input’, function(e) { document.getElementById(‘covers-display’).innerText = e.target.value; }); function calculateRevenue() { const covers = parseInt(document.getElementById(‘covers’).value); const signage = document.getElementById(‘signage’).value; const menu = document.getElementById(‘menu’).value; const social = document.getElementById(‘social’).value; // 1. Calculate Revenue Upsell // Assumptions: 15% of covers have dogs. Average spend per dog £3.50 (Scrap bowl/Sausage). 52 weeks. // If menu is ‘water’ or ‘biscuits’, revenue is 0. const estimatedDogs = Math.round(covers * 0.15); let revenue = 0; let revenueText = “You are currently earning £0 from your canine customers.”; if (menu === ‘menu’) { // £3.50 avg spend * 52 weeks const weeklyRev = estimatedDogs * 3.50; revenue = Math.round(weeklyRev * 52); revenueText = `Based on selling sausages/scraps to ~${estimatedDogs} dogs per week.`; } else { // Calculate potential “Missed” revenue const missedWeekly = estimatedDogs * 3.50; const missedAnnual = Math.round(missedWeekly * 52); revenueText = `⚠️ You are leaving ~£${missedAnnual.toLocaleString()} on the table by offering Water/Biscuits instead of a Menu.`; } // 2. Walk-in Confidence (Signage) let confidence = “”; let confidenceColor = “”; let actions = []; if (signage === ‘none’) { confidence = “Critical Failure. Families are driving past.”; actions.push(“Explicit Permission: You need a ‘Muddy Boots Welcome’ chalkboard outside. The ‘Risk Averse’ family assumes you are not dog-friendly.”); } else if (signage === ‘sticker’) { confidence = “Weak. Only the brave will enter.”; actions.push(“Upgrade your Signal: A small sticker isn’t enough. People fear being scolded. Make your permission loud and explicit.”); } else { confidence = “High. You are the default choice.”; actions.push(“Great Signage: You have removed the anxiety of entry. Now focus on the upsell.”); } // 3. Viral Potential (Social) let viral = “”; if (social === ‘generic’) { viral = “Low. Roast photos are generic.”; actions.push(“The Influencer Strategy: Stop posting food. Start posting dogs. ‘Dog of the Week’ gets 3x more engagement and guarantees shares.”); } else { viral = “Viral Gold Dust. Keep tagging owners.”; } // 4. Menu Actions if (menu === ‘water’) { actions.push(“The K9 Menu: A water bowl is minimum viable product. Add a ‘Good Boy Sausage’ for £2.00 (85% Margin).”); } else if (menu === ‘biscuits’) { actions.push(“Monetise the Treat: Free biscuits are nice, but a £3.50 ‘Scrap Bowl’ (trimmings + gravy) turns waste into profit.”); } // 5. Zoning Check (Implicit advice) actions.push(“Zoning: Ensure you have a clear ‘Dog Zone’ vs ‘Carpet Zone’ to keep the non-dog lovers happy.”); // Update DOM const revenueValEl = document.getElementById(‘revenue-val’); // Animation for number animateValue(revenueValEl, 0, revenue, 1000); document.getElementById(‘revenue-text’).innerText = revenueText; document.getElementById(‘confidence-text’).innerText = confidence; document.getElementById(‘viral-text’).innerText = viral; // Render Actions const actionList = document.getElementById(‘action-list’); actionList.innerHTML = “”; actions.forEach(action => { actionList.innerHTML += `
  • ${action}
  • `; }); // Show results const resultsDiv = document.getElementById(‘results’); resultsDiv.classList.remove(‘hidden’); // Re-init icons lucide.createIcons(); // Scroll resultsDiv.scrollIntoView({behavior: ‘smooth’}); } // Helper for number animation function animateValue(obj, start, end, duration) { let startTimestamp = null; const step = (timestamp) => { if (!startTimestamp) startTimestamp = timestamp; const progress = Math.min((timestamp – startTimestamp) / duration, 1); obj.innerHTML = Math.floor(progress * (end – start) + start).toLocaleString(); if (progress < 1) { window.requestAnimationFrame(step); } }; window.requestAnimationFrame(step); }

    You need the Roast Forecaster.

    This tool secures your baseline.

    • It ensures your confirmed bookings are costed perfectly.
    • It allows you to run “Scenarios.”
    • “What if we do an extra 20 covers of walk-ins? Do we have enough Beef?”
    • It gives you the “Safety Stock” number to handle the walkers without running out of food for the bookers.

    Feed the dog. Feed the owner. Bank the profit.

    👉 Get the tool here: https://smartpubtools.com/sunday-roast-forecaster/

    Used daily at Teal Farm Pub, Washington NE38

    The Pub Command Centre handles everything in this article — without a spreadsheet.

    Wet GP%, dry GP%, labour costs, beer line cleaning logs (12 lines), HACCP temperature checks, stock ordering, weekly P&L. All in one system. Used every shift at Teal Farm where labour runs at 15.1% against a UK pub average of 25-30%.

    On a pub taking £900k a year, running labour at 15% instead of 25% is worth roughly £90,000. That is what tracking it daily — every shift, every week — actually looks like.

    £97 once. No subscription. No monthly fee. Works on any phone, tablet or laptop. Setup under 10 minutes. Built and used by a Marston’s CRP licensee with a 5-star EHO rating and 180 covers.

    See the Pub Command Centre — £97 →

    One-off payment. Works on any device. Used by a working licensee, not a software company that’s never pulled a pint.

    The Conclusion

    📊 Your EPOS tells you what sold. Pub Command Centre tells you whether you made money.

    Real-time labour %, cash position and VAT liability in one dashboard. Built by a working pub landlord. £97 once, no monthly fees. 30-day money-back guarantee.

    Get Pub Command Centre — £97 →

    A pub without a dog is just a restaurant. Embrace the chaos. Market to the four-legged decision maker. And remember: A sausage for the dog is the easiest £2 profit you will make all week.

    Running your pub on gut feel?

    The Pub Command Centre gives you wet GP%, cellar checks, staff cost and weekly P&L — from your phone, every shift. £97 once. No subscription.

    See the Pub Command Centre →

    Leave a Reply

    Your email address will not be published. Required fields are marked *