Panthers’ Sam Reinhart out for Game 3 vs. Hurricanes

The Florida Panthers will be without a top forward as they aim to push the Carolina Hurricanes to the brink on Saturday.

Panthers’ Sam Reinhart out for Game 3 vs. Hurricanes

The Florida Panthers will be without a top forward as they aim to push the Carolina Hurricanes to the brink on Saturday.

Sam Reinhart is out for Game 3 with a lower-body injury and considered day-to-day, head coach Paul Maurice told reporters.

Jesper Boqvist will replace Reinhart in the lineup.

Reinhart exited Game 2 after absorbing a hip check from Hurricanes forward Sebastian Aho during the first period.

Though he returned to the ice for a 12-second shift, he quickly retreated back to the Panthers’ dressing room and did not return for the second period. Florida went on to beat Carolina 5-0.

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_220c3367a522a4fe687ee250b3e67315', 'NHL', '6381dcc2-9fbb-487f-b7f2-36fe8b68b57d');

In the Panthers’ 5-2 win in Game 1, Reinhart played 21:48 — most among Florida forwards — but was held without a point.

The Vancouver native enjoyed a solid season for the Panthers, picking up 39 goals and 42 assists over 79 regular-season games, along with four goals and seven assists in 13 post-season games.

Boqvist has one goal and one assist in nine playoff games after recording 23 points (12 goals, 11 assists) in 78 regular-season contests.

Florida currently leads the East final 2-0.

Live coverage of Saturday’s Game 3 between the Panthers and Hurricanes begins at 8 p.m. ET / 5 p.m. PT on Sportsnet and Sportsnet+.