Originally posted on SportsNet
Matthew Tkachuk‘s much-anticipated season debut will have to wait a little longer.
Florida Panthers head coach Paul Maurice confirmed on Thursday that Tkachuk will remain out for Friday’s Winter Classic against the New York Rangers (Sportsnet/Sportsnet+, 8 p.m. ET / 5 p.m. PT).
Tkachuk practised Sunday for the first time this season and more than four months after he had surgery to repair a sports hernia and torn adductor muscle.
The Panthers’ star hasn’t played since Game 6 of the Stanley Cup Final, when the Panthers clinched their second title in a row by again topping the Edmonton Oilers. He went through the summer trying to rehab — but eventually decided that he needed the surgery, knowing it would cost him the first few months of the season.
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 ${gameDateFormatted}VS
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} Powered by
${gameDateFormatted} VS
Powered by
`; }
// Example usage renderBetMGM('block_a8f96d07b5d2ba4a9695421121623928', 'NHL', '136a9305-2e23-4138-b93c-441b5e616de0');
After the Panthers won their second straight Cup, Tkachuk revealed that he had sustained the injuries while playing for Team USA in the 4 Nations Face-Off in February. He missed the final 25 games of the regular season but returned for Game 1 of the Panthers’ first-round playoff series against the Tampa Bay Lightning.
Tkachuk said previously he wanted to play in the Winter Classic, which will be played at loanDepot Park, home of the Miami Marlins.
But with over half the season remaining, as well as Tkachuk already named to Team USA for the Winter Olympics, the Panthers are playing it safe with his return.
Tkachuk’s next chance to make his season debut will be on Sunday against the league-leading Colorado Avalanche.
The Panthers sit one point out of a playoff spot despite playing the entire season without Tkachuk and captain Aleksander Barkov.
— With files from Associated Press
More from Sportsnet NHL to make it snow in Miami for Winter Classic game on FridayOriginally posted on SportsNet
Published: 5 days ago
Oilerhockey is in no way affiliated with the NHL or the Edmonton Oilers hockey club.
Copyright © 2009 - 2026 oilerhockey.com | Contact us at admin@oilerhockey.com | View our Privacy Policy or DMCA Policy