Canadiens’ Montembeault day-to-day, Laine absent from morning skate

It appears that the Montreal Canadiens will be without starting goalie Samuel Montembeault for Game 4 against the Washington Capitals.

Apr 27, 2025 - 16:35
 0
Canadiens’ Montembeault day-to-day, Laine absent from morning skate

It appears the Montreal Canadiens will be without starting goalie Sam Montembeault for Game 4 against the Washington Capitals.

After leaving Game 3 with a lower-body injury, head coach Martin St. Louis told reporters Sunday morning that Montembeault, who was not on the ice at morning skate, is listed as day-to-day.

With Montembeault’s injury, the Habs recalled netminder Cayden Primeau from the Laval Rocket of the American Hockey League. Jakob Dobes, who made seven stops in relief of Montembeault in Game 3, is expected to start Sunday.

Along with Montembeault, defenceman David Savard and forward Patrik Laine were also absent from the morning skate. Laine did not play in Game 3 due to an upper-body injury.

Savard had a treatment day, according to Karine Hains of The Hockey News. “I’m pretty sure he’s going to play,” St. Louis said after the skate.

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_586d376378d30882acb50f5e976a5709', 'NHL', '2ed7220b-ad49-4b3d-8b7c-08ba2ca3c041');

The 34-year-old veteran defenceman, who announced he will retire after the post-season, has an assist and is minus-two in the playoffs while playing just under 11 minutes a night.