Maple Leafs’ Auston Matthews misses morning skate, will suit up for Game 4
Captain Auston Matthews was not on the ice with the rest of the team for morning skate but will be in the lineup against the Florida Panthers.

The Toronto Maple Leafs were out on the ice for Sunday’s morning skate ahead of Game 4 but there was a notable absence.
Captain Auston Matthews was not on the ice with the rest of the team but will be in the lineup against the Florida Panthers.
This is not the first time Matthews has missed a morning skate, as he did in Round 1 against the Ottawa Senators.
Matthews hasn’t had his normal scoring touch during the Stanley Cup Playoffs, with just two goals, but he has recorded 10 points in nine games.
The 27-year-old played 64 games during the regular season as he was dealing with an undisclosed injury.
Toronto holds a 2-1 series lead after losing to the Panthers in overtime in Game 3.
Watch Game 4 between the Leafs and Panthers live at 7:30 p.m. ET/ 4:30 p.m. PT on Sportsnet and Sportsnet+.
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 = `
`; return; }
if (!oddsData) { container.innerHTML = `
`; return; }
let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });
container.innerHTML = `
`; }
// Example usage renderBetMGM('block_6caad697d6cf0213c1ef383bd7251301', 'NHL', '28995a6e-f117-4f93-88b5-7b44166167cb');